https://github.com/fabiospampinato/vscode-markdown-todo
Manage todo lists inside markdown files with ease.
https://github.com/fabiospampinato/vscode-markdown-todo
extension markdown todo vsc vscode
Last synced: 17 days ago
JSON representation
Manage todo lists inside markdown files with ease.
- Host: GitHub
- URL: https://github.com/fabiospampinato/vscode-markdown-todo
- Owner: fabiospampinato
- License: mit
- Created: 2018-09-19T19:06:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-10T23:08:26.000Z (7 months ago)
- Last Synced: 2025-04-19T18:53:41.954Z (3 months ago)
- Topics: extension, markdown, todo, vsc, vscode
- Language: TypeScript
- Size: 732 KB
- Stars: 31
- Watchers: 2
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
# Markdown Todo
![]()
Manage todo lists inside markdown files with ease.
## Install
Follow the instructions in the [Marketplace](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-markdown-todo), or run the following in the command palette:
```sh
ext install fabiospampinato.vscode-markdown-todo
```## Usage
It adds 4 commands to the command palette:
```js
'Markdown Todo: Toggle Todo' // Toggle a todo
'Markdown Todo: Toggle Done' // Toggle a todo as done
'Markdown Todo: Decrease' // Decrease the "todo-ness" of a line, going: checked -> uncked -> list -> plain line
'Markdown Todo: Increase' // Increase the "todo-ness" of a line, going: plain line -> list -> unchecked -> checked
```It adds 3 shortcuts when editing a `Markdown` file:
```js
'Cmd/Ctrl+Enter' // Triggers `Markdown Todo: Toggle Todo`
'Alt+Enter' // Triggers `Markdown Todo: Toggle Todo`
'Alt+D' // Triggers `Markdown Todo: Toggle Done`
```## Settings
```js
{
"markdown.todo.symbols.bullet": "-", // Todo bullet symbol
"markdown.todo.symbols.done": "x" // Todo done symbol
}
```## Demo

## License
MIT © Fabio Spampinato