diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-10 15:52:40 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-10 15:52:40 +0200 |
commit | 426b21829e1304b3e7c545be4743e9b89424eddc (patch) | |
tree | 7230ea45f9e906169ab140cb077636701a2553c4 | |
parent | 7df95b28f6f344e5d5e75ef57bee3babe93fa7be (diff) |
fix(util): nvim ex autocmd
-rw-r--r-- | fnl/util.fnl | 2 |
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)] |