aboutsummaryrefslogtreecommitdiff
path: root/lua/simple-denote.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/simple-denote.lua')
-rw-r--r--lua/simple-denote.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/simple-denote.lua b/lua/simple-denote.lua
index 403a5ac..8ac2193 100644
--- a/lua/simple-denote.lua
+++ b/lua/simple-denote.lua
@@ -9,8 +9,8 @@ function M.load_cmd(options)
api.note(options)
elseif opts.fargs[1] == "title" then
api.title(options)
- elseif opts.fargs[1] == "tag" then
- api.tag(options)
+ elseif opts.fargs[1] == "keywords" then
+ api.keywords(options)
elseif opts.fargs[1] == "signature" then
api.signature(options)
else
@@ -19,7 +19,7 @@ function M.load_cmd(options)
end, {
nargs = 1,
complete = function()
- return { "note", "title", "tag", "signature" }
+ return { "note", "title", "keywords", "signature" }
end,
})
end