From 3f264143cf7cae5e78cc37d01df767cccdfe0997 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 5 Nov 2023 15:27:58 +0900 Subject: fix(keymaps): fix j,k mappings --- fnl/nvrc/keymaps.fnl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fnl/nvrc') diff --git a/fnl/nvrc/keymaps.fnl b/fnl/nvrc/keymaps.fnl index c185564..a1342e8 100644 --- a/fnl/nvrc/keymaps.fnl +++ b/fnl/nvrc/keymaps.fnl @@ -58,8 +58,8 @@ (map! [n :silent] :Pq ":lclose") ;; Work with word wrap -(map! [n :expr :silent] :k "v:count == 0 ? 'gk' : 'k'") -(map! [n :expr :silent] :j "v:count == 0 ? 'gj' : 'j'") +(map! [n :expr :silent :noremap] :k "v:count == 0 ? 'gk' : 'k'") +(map! [n :expr :silent :noremap] :j "v:count == 0 ? 'gj' : 'j'") (map! [n] : ":m .+1==") (map! [n] : ":m .-2==") -- cgit 1.4.1