summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-01-23 22:23:10 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-01-27 16:11:47 +0100
commit54cb9150191d453af51f46994764ce99c1c0b9d9 (patch)
tree7ac10489c09415221d1552900c776eb48997630f
parent26fb2fed1d669eb62e21fc19922217b5b6a5da42 (diff)
nvim: Undo swap of ` and '
-rw-r--r--.config/nvim/lua/mango/remap.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/nvim/lua/mango/remap.lua b/.config/nvim/lua/mango/remap.lua
index 6de5149..787ae1e 100644
--- a/.config/nvim/lua/mango/remap.lua
+++ b/.config/nvim/lua/mango/remap.lua
@@ -28,8 +28,8 @@ remap('n', 'n', 'nzzzv')
remap('n', 'N', 'Nzzzv')
-- Swap the jump-to-mark bindings
-remap('nv', "'", '`')
-remap('nv', '`', "'")
+-- remap('nv', "'", '`')
+-- remap('nv', '`', "'")
-- Transpose characters; for some reason it has a noticable delay if I just give
-- a string instead of lambda functions