summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouie <louie@example.com>2022-07-04 20:17:16 -0700
committerlouie <louie@example.com>2022-07-04 20:17:16 -0700
commit23096981da50aa9b320c9fe39ca8d0e52b37718f (patch)
treea40e9babbd636d6c95476dfaea1716ab9eb83da4
parentffd97c9fe1ba28893e75ebf79447d42a1c2044dd (diff)
Remove S-j and S-k remaps
-rw-r--r--lua/user/keymaps.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua
index 2e03cec..44c8d79 100644
--- a/lua/user/keymaps.lua
+++ b/lua/user/keymaps.lua
@@ -35,9 +35,7 @@ keymap("n", "<S-l>", "gt", opts)
keymap("n", "<S-Left>", "gT", opts)
keymap("n", "<S-Right>", "gt", opts)
--- Navigate buffers (both hjkl and arrow keys)
-keymap("n", "<S-j>", ":bnext<CR>", opts)
-keymap("n", "<S-k>", ":bprevious<CR>", opts)
+-- Navigate buffers
keymap("n", "<S-Down>", ":bnext<CR>", opts)
keymap("n", "<S-Up>", ":bprevious<CR>", opts)