diff options
author | sefidel <contact@sefidel.net> | 2023-11-05 15:27:58 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-11-05 15:27:58 +0900 |
commit | 3f264143cf7cae5e78cc37d01df767cccdfe0997 (patch) | |
tree | 2d8a9d215d9151be0b870dd58228d76567acd57c /fnl | |
parent | 56f194af8067561b9426288730579501b7b8dfb8 (diff) | |
download | nvimrc-3f264143cf7cae5e78cc37d01df767cccdfe0997.tar.gz nvimrc-3f264143cf7cae5e78cc37d01df767cccdfe0997.zip |
fix(keymaps): fix j,k mappings
Diffstat (limited to 'fnl')
-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>==") |