From 3bcae1fe806339df498c74a29a3325fcc230db8f Mon Sep 17 00:00:00 2001 From: buffet Date: Fri, 24 Sep 2021 09:47:30 +0000 Subject: [PATCH] Remove trailing space --- nvim/.config/nvim/fnl/utils.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/fnl/utils.fnl b/nvim/.config/nvim/fnl/utils.fnl index e380c55..fb6fd39 100644 --- a/nvim/.config/nvim/fnl/utils.fnl +++ b/nvim/.config/nvim/fnl/utils.fnl @@ -16,7 +16,7 @@ (defn keymap [mode from to ?opts] "Set a mapping in the given mode, and some optional parameters, defaulting to {:noremap true :silent true}. If :buffer is set, uses buf_set_keymap rather than set_keymap" - (local full-opts + (local full-opts (->> (or ?opts {}) (a.merge {:noremap true :silent true}) (without-keys [:buffer])))