@@ -135,6 +135,8 @@ COMMANDS *obsidian-commands*
135
135
command has one optional argument: the title of the new note.
136
136
- `:Obsidian toc` to load the table of contents of the current note into a picker
137
137
list.
138
+ - `:Obsidian tasks [STATUS] ` to load the list of tasks of the current vault into
139
+ a picker list.
138
140
139
141
140
142
DEMO *obsidian-demo*
@@ -580,12 +582,12 @@ carefully and customize it to your needs:
580
582
max_file_length = 5000, -- disable UI features for files with more than this many lines
581
583
-- Define how various check-boxes are displayed
582
584
checkboxes = {
583
- -- NOTE: the 'char' value has to be a single character, and the highlight groups are defined below.
584
- [" "] = { char = "", hl_group = "ObsidianTodo" },
585
- ["x"] = { char = "", hl_group = "ObsidianDone" },
586
- [">"] = { char = "", hl_group = "ObsidianRightArrow" },
587
- ["~"] = { char = "", hl_group = "ObsidianTilde" },
588
- ["!"] = { char = "", hl_group = "ObsidianImportant" },
585
+ -- NOTE: the 'char' value and the status has to be a single character, and the highlight groups are defined below.
586
+ [" "] = { char = "", order = 1, name = "todo", hl_group = "ObsidianTodo" },
587
+ ["x"] = { char = "", order = 2, name = "done", hl_group = "ObsidianDone" },
588
+ [">"] = { char = "", order = 3, name = "doing", hl_group = "ObsidianRightArrow" },
589
+ ["~"] = { char = "", order = 4, name = "cancelled", hl_group = "ObsidianTilde" },
590
+ ["!"] = { char = "", order = 5, name = "important", hl_group = "ObsidianImportant" },
589
591
-- Replace the above with this if you don't have a patched font:
590
592
-- [" "] = { char = "☐", hl_group = "ObsidianTodo" },
591
593
-- ["x"] = { char = "✔", hl_group = "ObsidianDone" },
0 commit comments