Skip to content

Commit 981b2ca

Browse files
committed
docs: update help docs
1 parent 9ae9e09 commit 981b2ca

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

doc/tdo.txt

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33
==============================================================================
44
Table of Contents *tdo-table-of-contents*
@@ -20,17 +20,16 @@ FEATURES *tdo-features*
2020
- Various commands to make working with tdo seamless
2121
- Todo navigation and toggle helpers
2222
- Fuzzy autocompletion for notes navigation
23-
- Integration with pickers for easy notes searching
23+
- Integration with Various pickers for easy notes searching
2424

2525

2626
SETUP *tdo-setup*
2727

2828

2929
REQUIREMENTS ~
3030

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
3433

3534

3635
INSTALLATION ~
@@ -100,13 +99,11 @@ timestamp insertion.
10099
s = { '<cmd>lua require("tdo").run_with("commit " .. vim.fn.expand("%:p")) vim.notify("Commited!")<cr>', 'Commit Note', },
101100
t = { '<cmd>TdoTodos<cr>', 'Incomplete Todos' },
102101
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' },
105104
p = {
106-
['2'] = { "Tdo -2", 'Todo 2 Days In Past' },
105+
['<NUM>'] = { "Tdo -<NUM>", 'Todo <NUM> Days In Past' },
107106
},
108-
109-
110107
},
111108
<
112109

0 commit comments

Comments
 (0)