diff options
Diffstat (limited to 'fnl/plugins/editor/better-escape.fnl')
-rw-r--r-- | fnl/plugins/editor/better-escape.fnl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fnl/plugins/editor/better-escape.fnl b/fnl/plugins/editor/better-escape.fnl index cde61bc..5bd9b0c 100644 --- a/fnl/plugins/editor/better-escape.fnl +++ b/fnl/plugins/editor/better-escape.fnl @@ -1,8 +1,8 @@ ;; Better escape without nasty delay. -{1 :max397574/better-escape.nvim - :event :BufReadPost - :opts {:mapping [:kk :jj] - :timeout vim.o.timeoutlen - :clear_empty_lines false - :keys :<Esc>}} +(local opts {:mapping [:kk :jj] + :timeout vim.o.timeoutlen + :clear_empty_lines false + :keys :<Esc>}) + +{1 :max397574/better-escape.nvim :event :BufReadPost : opts} |