Bingo Kanban is a Visual Studio Code extension that helps developers manage their tasks directly in their codebase. It converts code comments into Kanban cards, providing a visual overview of the tasks and their progress.
- Find Todos and WIPs: Finds todos and work-in-progress (WIP) comments in the active text editor and adds them to the Kanban data.
- Kanban Board: Displays a Kanban board in a webview, with columns for "To Do", "In Progress", and "Done". Each task has "Delete" and "Update" buttons.
- Add Tasks: Adds a new task to a column by clicking the plus button next to the column name.
- Delete Tasks: Deletes a task from any column.
- Update Tasks: Updates a task in any column (you'll need to implement this feature based on your specific needs).
- Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install Gordarg.bingo-kanban
- Clone this repository:
git clone https://github.com/Gordarg/bingo-kanban-vsc.git
- Open the cloned repository in Visual Studio Code.
- Press
F5
to run the extension in a new Extension Development Host window.
- Open a file in Visual Studio Code.
- Run the
bingo-kanban.add
command to find todos and WIPs in the active text editor and add them to the Kanban data. - Run the
bingo-kanban.board
command to display the Kanban board. - Use the "Delete" and "Update" buttons to delete and update tasks, respectively.
- Use the plus button next to each column name to add a new task to that column.
Contributions are welcome! Please read our contributing guidelines to get started.
sudo apt install nodejs
sudo apt install npm
# From scratch?
npm install -g yo generator-code --force
yo code
npm install -g vsce
vsce package
This project is licensed under the MIT License. See the LICENSE file for details.