diff options
author | louie <louie@example.com> | 2022-07-04 20:17:16 -0700 |
---|---|---|
committer | louie <louie@example.com> | 2022-07-04 20:17:16 -0700 |
commit | 23096981da50aa9b320c9fe39ca8d0e52b37718f (patch) | |
tree | a40e9babbd636d6c95476dfaea1716ab9eb83da4 /lua | |
parent | ffd97c9fe1ba28893e75ebf79447d42a1c2044dd (diff) |
Remove S-j and S-k remaps
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/keymaps.lua | 4 |
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) |