diff options
| author | DefaultGen <gravel.justness270@slmail.me> | 2024-06-20 20:17:44 -0400 |
|---|---|---|
| committer | DefaultGen <gravel.justness270@slmail.me> | 2024-06-20 20:17:44 -0400 |
| commit | 279acd45dea8aef043a30bc7f3dfdf033d98d3ea (patch) | |
| tree | 9fc8c4e2b59f1475d1da58030213960a0b04345f /lua/simple-denote.lua | |
| parent | e25509f7630c824234188dbdbb00d0793580f550 (diff) | |
| download | simple-denote.nvim-279acd45dea8aef043a30bc7f3dfdf033d98d3ea.tar.gz | |
Changed tags to keywords
Diffstat (limited to 'lua/simple-denote.lua')
| -rw-r--r-- | lua/simple-denote.lua | 6 |
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 |
