diff options
-rw-r--r-- | fnl/nvrc/keymaps.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
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] :<leader>Pq ":lclose<cr>") ;; 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] :<A-e> ":m .+1<cr>==") (map! [n] :<A-r> ":m .-2<cr>==") |