diff options
Diffstat (limited to 'lua/simple-denote/cmd.lua')
| -rw-r--r-- | lua/simple-denote/cmd.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lua/simple-denote/cmd.lua b/lua/simple-denote/cmd.lua new file mode 100644 index 0000000..177db88 --- /dev/null +++ b/lua/simple-denote/cmd.lua @@ -0,0 +1,26 @@ +local M = { + commands = { "note", "retitle", "retag" }, +} + +local api = require("simple-denote.api") + +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 |
