summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-10 15:52:40 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-10 15:52:40 +0200
commit426b21829e1304b3e7c545be4743e9b89424eddc (patch)
tree7230ea45f9e906169ab140cb077636701a2553c4 /fnl
parent7df95b28f6f344e5d5e75ef57bee3babe93fa7be (diff)
fix(util): nvim ex autocmd
Diffstat (limited to 'fnl')
-rw-r--r--fnl/util.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/util.fnl b/fnl/util.fnl
index a773b6e..5397270 100644
--- a/fnl/util.fnl
+++ b/fnl/util.fnl
@@ -3,7 +3,7 @@
{autoload {nvim aniseed.nvim}})
(defn autocmd [name opts]
- (nvim.create_autocmd name opts))
+ (nvim.ex.autocmd name opts))
(defn load-plugin [name]
(let [(ok? val-or-err) (pcall require name)]