vim-simple-todo
vim-simple-todo copied to clipboard
Mappings to manage GitHub-like task lists
I am not sure if it is possible to open the todo in a small vertical split (by default or everytime) like we see in plugins like ultisnips or vim-plug...
Vimwiki has an interesting behaviour, they somehow (I didn't check the code yet) override the normal mode o and O commands, and insert new todo-lines below and above respectively. I...
It might be useful to add an option to make the resolved issues fall to the bottom so they don't mix with the resolved ones as well as to delete...
Overwrite `o` since add `[ ]` to an already ToDo line is doubly the intention. ```vim fun! SimpleTodoCheckAndCreateTodo() let current_line = getline('.') let is_task_line = current_line =~# '^\s*\(- \)\?\[ \?[x]\?\]'...