@@ -97,6 +97,8 @@ The fork aims to stay close to the original, but fix bugs, include and merge use
97
97
98
98
- ` :Obsidian toc ` to load the table of contents of the current note into a picker list.
99
99
100
+ - ` :Obsidian tasks [STATUS] ` to load the list of tasks of the current vault into a picker list.
101
+
100
102
### Demo
101
103
102
104
[ ![ 2024-01-31 14 22 52] ( https://github.com/epwalsh/obsidian.nvim/assets/8812459/2986e1d2-13e8-40e2-9c9e-75691a3b662e )] ( https://github.com/epwalsh/obsidian.nvim/assets/8812459/2986e1d2-13e8-40e2-9c9e-75691a3b662e )
@@ -520,12 +522,12 @@ This is a complete list of all of the options that can be passed to `require("ob
520
522
max_file_length = 5000 , -- disable UI features for files with more than this many lines
521
523
-- Define how various check-boxes are displayed
522
524
checkboxes = {
523
- -- NOTE: the 'char' value has to be a single character, and the highlight groups are defined below.
524
- [" " ] = { char = " " , hl_group = " ObsidianTodo" },
525
- [" x" ] = { char = " " , hl_group = " ObsidianDone" },
526
- [" >" ] = { char = " " , hl_group = " ObsidianRightArrow" },
527
- [" ~" ] = { char = " " , hl_group = " ObsidianTilde" },
528
- [" !" ] = { char = " " , hl_group = " ObsidianImportant" },
525
+ -- NOTE: the 'char' value and the status has to be a single character, and the highlight groups are defined below.
526
+ [" " ] = { char = " " , order = 1 , name = " todo " , hl_group = " ObsidianTodo" },
527
+ [" x" ] = { char = " " , order = 2 , name = " done " , hl_group = " ObsidianDone" },
528
+ [" >" ] = { char = " " , order = 3 , name = " doing " , hl_group = " ObsidianRightArrow" },
529
+ [" ~" ] = { char = " " , order = 4 , name = " cancelled " , hl_group = " ObsidianTilde" },
530
+ [" !" ] = { char = " " , order = 5 , name = " important " , hl_group = " ObsidianImportant" },
529
531
-- Replace the above with this if you don't have a patched font:
530
532
-- [" "] = { char = "☐", hl_group = "ObsidianTodo" },
531
533
-- ["x"] = { char = "✔", hl_group = "ObsidianDone" },
0 commit comments