diff options
Diffstat (limited to 'lua/denote/cmd.lua')
| -rw-r--r-- | lua/denote/cmd.lua | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/lua/denote/cmd.lua b/lua/denote/cmd.lua index 6489f0c..91ca96e 100644 --- a/lua/denote/cmd.lua +++ b/lua/denote/cmd.lua @@ -1,23 +1,26 @@ local M = { - commands = { "note", "search" }, + commands = { "note", "retitle", "retag" }, } + local api = require("denote.api") -function M.load_cmd() - vim.api.nvim_create_user_command("Denote", function(opts) - if opts.fargs[1] == "note" then - api.note() - elseif opts.fargs[1] == "search" then - api.search() - else - error("Unsupported operation " .. opts.fargs[1]) - end - end, { - nargs = 1, - complete = function() - return { "note", "search" } - end, - }) +function M.load_cmd(options) + vim.api.nvim_create_user_command("Denote", function(opts) + if opts.fargs[1] == "note" then + api.note(options) + elseif opts.fargs[1] == "retitle" then + api.retitle(options) + elseif opts.fargs[1] == "retag" then + api.retag(options) + else + error("Unsupported operation " .. opts.fargs[1]) + end + end, { + nargs = 1, + complete = function() + return M.commands + end, + }) end return M |
