nvim: Add markdown todo augend toggle

Use <c-s> and <c-x> to cycle through all todo list item states. Only
works if the cursor is directly on the todo list item.
This commit is contained in:
Marty Oehme 2025-07-16 16:53:07 +02:00
parent aade4456e3
commit fb94651f4c
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -36,6 +36,11 @@ return {
word = false,
cyclic = true,
}),
augend.constant.new({
elements = { "- [ ] ", "- [x] ", "- [o] ", "- [-] ", "- [~] " },
word = false,
cyclic = true,
}),
},
})
end,