1
- *tdo.txt* For Neovim >= 0.8.0 Last change: 2025 March 30
1
+ *tdo.txt* For Neovim >= 0.8.0 Last change: 2025 March 31
2
2
3
3
==============================================================================
4
4
Table of Contents *tdo-table-of-contents*
@@ -20,17 +20,16 @@ FEATURES *tdo-features*
20
20
- Various commands to make working with tdo seamless
21
21
- Todo navigation and toggle helpers
22
22
- Fuzzy autocompletion for notes navigation
23
- - Integration with pickers for easy notes searching
23
+ - Integration with Various pickers for easy notes searching
24
24
25
25
26
26
SETUP *tdo-setup*
27
27
28
28
29
29
REQUIREMENTS ~
30
30
31
- - Neovim
32
- - tdo <https://github.com/2kabhishek/tdo >
33
- - utils.nvim <https://github.com/2kabhishek/utils.nvim >
31
+ - tdo <https://github.com/2kabhishek/tdo > must be setup
32
+ - utils.nvim <https://github.com/2kabhishek/utils.nvim > for picker support
34
33
35
34
36
35
INSTALLATION ~
@@ -100,13 +99,11 @@ timestamp insertion.
100
99
s = { '<cmd> lua require("tdo").run_with("commit " .. vim.fn.expand("%:p")) vim.notify("Commited!")<cr> ', 'Commit Note', },
101
100
t = { '<cmd> TdoTodos<cr> ', 'Incomplete Todos' },
102
101
x = { '<cmd> TdoToggle<cr> ', 'Toggle Todo' },
103
- -- These bindings can go from 1 till 9
104
- ['2 '] = { "Tdo 2 ", 'Todo 2 Days In Future' },
102
+ -- <NUM> can be any number, I recommend going from 1 till 9 in a loop
103
+ ['<NUM> '] = { "Tdo <NUM> ", 'Todo <NUM> Days In Future' },
105
104
p = {
106
- ['2 '] = { "Tdo -2 ", 'Todo 2 Days In Past' },
105
+ ['<NUM> '] = { "Tdo -<NUM> ", 'Todo <NUM> Days In Past' },
107
106
},
108
-
109
-
110
107
},
111
108
<
112
109
0 commit comments