summaryrefslogtreecommitdiff
path: root/fnl/settings/usercmds.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/settings/usercmds.fnl')
-rw-r--r--fnl/settings/usercmds.fnl5
1 files changed, 1 insertions, 4 deletions
diff --git a/fnl/settings/usercmds.fnl b/fnl/settings/usercmds.fnl
index 14020af..002e1b2 100644
--- a/fnl/settings/usercmds.fnl
+++ b/fnl/settings/usercmds.fnl
@@ -6,9 +6,6 @@
theme (. opts :theme)]
((. telescope builtin) ((. themes theme) opts))))
-(fn create-usercmd [event cmd opts]
- (vim.api.nvim_create_user_command event cmd opts))
-
(local usercmds [[:OrgAgendaPrompt
(lambda []
(let [orgmode (require :orgmode)]
@@ -87,4 +84,4 @@
(each [_ usercmd (ipairs usercmds)]
(match usercmd
- [event cmd opts] (create-usercmd event cmd opts)))
+ [event cmd opts] (vim.api.nvim_create_user_command event cmd opts)))