about summary refs log tree commit diff
path: root/fnl/nvrc
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-11-05 15:27:58 +0900
committersefidel <contact@sefidel.net>2023-11-05 15:27:58 +0900
commit3f264143cf7cae5e78cc37d01df767cccdfe0997 (patch)
tree2d8a9d215d9151be0b870dd58228d76567acd57c /fnl/nvrc
parent56f194af8067561b9426288730579501b7b8dfb8 (diff)
downloadnvimrc-3f264143cf7cae5e78cc37d01df767cccdfe0997.tar.gz
nvimrc-3f264143cf7cae5e78cc37d01df767cccdfe0997.zip
fix(keymaps): fix j,k mappings
Diffstat (limited to 'fnl/nvrc')
-rw-r--r--fnl/nvrc/keymaps.fnl4
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>==")