@@ -34,7 +34,7 @@ Add the following to your lazy/packer config
34
34
{
35
35
'2kabhishek/tdo.nvim',
36
36
dependencies = 'nvim-telescope/telescope.nvim',
37
- cmd = { 'Tdo', 'TdoEntry', 'TdoNote', 'TdoPending ', 'TdoToggle', 'TdoFind', 'TdoFiles' },
37
+ cmd = { 'Tdo', 'TdoEntry', 'TdoNote', 'TdoTodos ', 'TdoToggle', 'TdoFind', 'TdoFiles' },
38
38
keys = { '[t', ']t' },
39
39
},
40
40
@@ -50,7 +50,7 @@ COMMANDS *tdo-commands*
50
50
- `Tdo <args>`: open today's todo when no `args`, accepts `args` same as [tdo](https://github.com/2kabhishek/tdo?tab=readme-ov-file#-usage)
51
51
- `TdoEntry <offset>`: open today's journal entry, accepts `offset`
52
52
- `TdoNote`: create new note with title, if left empty creates a draft with current timestamp
53
- - `TdoPending `: show all your pending todos
53
+ - `TdoTodos `: show all your incomplete todos
54
54
- `TdoToggle`: toggle todo state
55
55
- `TdoFind <text>`: interactively search for `text` in all your notes
56
56
- `TdoFiles`: review all your notes
@@ -81,7 +81,7 @@ I have defined commands for yesterday/tomorrow's todos, commit note and timestam
81
81
k = { "<cmd>put =strftime('%r')<cr>", 'Insert Human Time' },
82
82
K = { "<cmd>put =strftime('%F-%H-%M')<cr>", 'Insert Time' },
83
83
l = { '<cmd>Tdo 1<cr>', "Tomorrow's Todo" },
84
- t = { '<cmd>TdoPending <cr>', 'Pending Todos' },
84
+ t = { '<cmd>TdoTodos <cr>', 'Incomplete Todos' },
85
85
n = { '<cmd>TdoNote<cr>', 'New Note' },
86
86
s = { '<cmd>lua require("tdo").run_with("commit " .. vim.fn.expand("%:p")) vim.notify("Commited!")<cr>', 'Commit Note', },
87
87
x = { '<cmd>TdoToggle<cr>', 'Toggle Todo' },
0 commit comments