nvim: Update checkbox markdown states
We now have the usual 'undone' ([ ]) and 'done' ([x]) states, but express 3 further ones that are _somewhat_ standardized: - [o] this one is 'doing', in-progress - [-] this one is 'indeterminate', we're not sure - [~] this one is 'deleted', never to be done
This commit is contained in:
parent
fad8f65214
commit
d8458ae010
1 changed files with 3 additions and 2 deletions
|
|
@ -80,8 +80,9 @@ local prose_plugs = {
|
||||||
},
|
},
|
||||||
checkbox = {
|
checkbox = {
|
||||||
custom = {
|
custom = {
|
||||||
todo = { raw = "[-]", rendered = " ", highlight = "RenderMarkdownTodo" },
|
doing = { raw = "[o]", rendered = " ", highlight = "RenderMarkdownTodo" },
|
||||||
removed = { raw = "[_]", rendered = " ", highlight = "RenderMarkdownTodo" },
|
indeterminate = { raw = "[-]", rendered = " ", highlight = "RenderMarkdownTodo" },
|
||||||
|
removed = { raw = "[~]", rendered = " ", highlight = "RenderMarkdownTodo" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
html = {
|
html = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue