Neovim lua plugin to manage todos in your markdown files
This plugin exposes 2 main functions:
This will add a new github style markdown task on a new line and leave your cursor in insert mode at the end of the line so you can type the title of the task
Example usage
local md_td = require('md_todo')
vim.keymap.set("n", "<leader>md",function ()
md_td.toggle_state()
end)
This will toggle the state of a task.
Example usage
local md_td = require('md_todo')
vim.keymap.set("n", "<leader>mn",function ()
md_td.create_todo()
end)
They are welcome, just open a pull request :)
- [] Select multiple tasks and toggle state