You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 7, 2022. It is now read-only.
As i'm switching between a few projects with shared todos it would be helpful to have a globally defined kanban workspace.
For now i have hardcoded workspaces.js line 54
from return vscode.Uri.file(Path.resolve(Path.join(this.folder.uri.fsPath, '.vscode/' + BOARD_FILENAME)));
to vscode.Uri.file("<Some hardcoded Path>" + BOARD_FILENAME);
Maybe as a future idea: Make multiple sources available? Global + project-specific kanban?
The text was updated successfully, but these errors were encountered:
There are many ways to do this.. I use markdown a lot and since there are many editors for .md files.. other extensions only implemented viewers.. I think having a unique file extension .kanban and making this extension handle it globally ? I'm not sure what the format should be..
As i'm switching between a few projects with shared todos it would be helpful to have a globally defined kanban workspace.
For now i have hardcoded workspaces.js line 54
from
return vscode.Uri.file(Path.resolve(Path.join(this.folder.uri.fsPath, '.vscode/' + BOARD_FILENAME)));
to
vscode.Uri.file("<Some hardcoded Path>" + BOARD_FILENAME);
Maybe as a future idea: Make multiple sources available? Global + project-specific kanban?
The text was updated successfully, but these errors were encountered: