vscode-kanban
vscode-kanban copied to clipboard
[Feature Request] Better documentation and config for column renaming
{
"todo": [],
"in-progress": [],
"testing": [],
"done": [],
"kanban": {
"columns": {
"done": "Finished",
"inProgress": "Work",
"testing": "Currently Testing",
"todo": "Ideas and TODOs"
}
}
}
Okay turns out the column renaming stuff should be in the workspace config (settings.json), not in the extension's config file (vscode-kanban.json).
Should be mentioned in the docs.
(Also, should be possible to have it in vscode-kanban.json instead. Putting config in the workspace config file is for extensions that don't have their own config file - but this one does.)