A simple extension for Neovim to organize your todo lists.
<PackageManager> 'kvrohit/tasks.nvim'
Create a file with todo
extension.
To toggle text as a todo item use the :ToggleTask
command. Running this command on an empty line will convert that line into a todo item.
Running :ToggleTask
on a todo item will toggle its state from open to complete and vice versa.
To cancel a todo item use the :CancelTask
command.
To unmark a todo item run :UndoTask
.
Setup custom shortcuts/keybindings in your configuration for ease of use. Example:
nnoremap <leader>tt :ToggleTask<CR>
nnoremap <leader>tc :CancelTask<CR>
nnoremap <leader>td :UndoTask<CR>
✔ Implement the tasks plugin for Neovim @done (03/07/2020 22:33:06)
☐ Write usage documentation for the tasks plugin
✗ This task was cancelled @cancelled (04/10/2021 21:36:03)