/vscode-markdown-todo

Manage todo lists inside markdown files with ease.

Primary LanguageTypeScriptMIT LicenseMIT

Markdown Todo

Logo

Manage todo lists inside markdown files with ease.

Install

Follow the instructions in the Marketplace, or run the following in the command palette:

ext install fabiospampinato.vscode-markdown-todo

Usage

It adds 4 commands to the command palette:

'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:

'Cmd/Ctrl+Enter' // Triggers `Markdown Todo: Toggle Todo`
'Alt+Enter' // Triggers `Markdown Todo: Toggle Todo`
'Alt+D' // Triggers `Markdown Todo: Toggle Done`

Settings

{
  "markdown.todo.symbols.bullet": "-", // Todo bullet symbol
  "markdown.todo.symbols.done": "x" // Todo done symbol
}

Demo

Demo

License

MIT © Fabio Spampinato