From 516bc5e46c8e8a4f63df0a21bf7efbe835bdec2a Mon Sep 17 00:00:00 2001 From: workhorse Date: Mon, 3 Jun 2024 16:48:36 -0400 Subject: Fixed heading config --- lua/simple-denote/cmd.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lua/simple-denote/cmd.lua (limited to 'lua/simple-denote/cmd.lua') 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 -- cgit v1.2.3