diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-04-07 15:33:37 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-04-07 15:33:37 +0200 |
commit | a2d47a73922822386d9f8b0d61903789166ff14f (patch) | |
tree | e9c7e74ccb4a75a64b00af6628821b55dda25ad4 /lua | |
parent | 71c5956028f1b380a1e25811a665175b291897c6 (diff) | |
download | vim-a2d47a73922822386d9f8b0d61903789166ff14f.zip vim-a2d47a73922822386d9f8b0d61903789166ff14f.tar.gz |
keymaps : fix buffer mappings
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/keymaps.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index caf78a4..09ab09a 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -42,8 +42,8 @@ keymap("n", "<C-Left>", ":vertical resize +2<CR>", opts) keymap("n", "<C-Right>", ":vertical resize -2<CR>", opts) -- Navigate buffers -keymap("n", "<S-Q>", ":bnext<CR>", opts) -keymap("n", "<S-H>", ":bprevious<CR>", opts) +keymap("n", "<S-H>", ":bnext<CR>", opts) +keymap("n", "<S-Q>", ":bprevious<CR>", opts) -- Move text up and down -- keymap("n", "<A-j>", "<Esc>:m .+1<CR>==gi", opts) |