feat: rename
This commit is contained in:
parent
47a5c7a5e5
commit
53ab1cc000
21 changed files with 191 additions and 191 deletions
39
plugin/pending.lua
Normal file
39
plugin/pending.lua
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
if vim.g.loaded_pending then
|
||||
return
|
||||
end
|
||||
vim.g.loaded_pending = true
|
||||
|
||||
vim.api.nvim_create_user_command('Pending', function(opts)
|
||||
require('pending').command(opts.args)
|
||||
end, {
|
||||
nargs = '*',
|
||||
complete = function(arg_lead, cmd_line)
|
||||
local subcmds = { 'add', 'sync', 'archive' }
|
||||
if not cmd_line:match('^Pending%s+%S') then
|
||||
return vim.tbl_filter(function(s)
|
||||
return s:find(arg_lead, 1, true) == 1
|
||||
end, subcmds)
|
||||
end
|
||||
return {}
|
||||
end,
|
||||
})
|
||||
|
||||
vim.keymap.set('n', '<Plug>(pending-open)', function()
|
||||
require('pending').open()
|
||||
end)
|
||||
|
||||
vim.keymap.set('n', '<Plug>(pending-toggle)', function()
|
||||
require('pending').toggle_complete()
|
||||
end)
|
||||
|
||||
vim.keymap.set('n', '<Plug>(pending-view)', function()
|
||||
require('pending.buffer').toggle_view()
|
||||
end)
|
||||
|
||||
vim.keymap.set('n', '<Plug>(pending-priority)', function()
|
||||
require('pending').toggle_priority()
|
||||
end)
|
||||
|
||||
vim.keymap.set('n', '<Plug>(pending-date)', function()
|
||||
require('pending').prompt_date()
|
||||
end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue