Skip to content

Commit

Permalink
fix: Fix bufferline.nvim keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalDevil committed Nov 6, 2023
1 parent 22d9a9f commit 9b85587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/devil/configs/plugin/bufferline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ utils.keymap("n", "<C-l>", "<CMD>BufferLineCycleNext<CR>")
-- close current buffer
utils.keymap("n", "<C-w>", "<CMD>Bdelete!<CR>")
-- move current buffer
utils.keymap("n", "<A-<>", "<CMD>BufferLineMoveLeft<CR>")
utils.keymap("n", "<A->>", "<CMD>BufferLineMoveRight<CR>")
utils.keymap("n", "<A-<>", "<CMD>BufferLineMovePrev<CR>")
utils.keymap("n", "<A->>", "<CMD>BufferLineMoveNext<CR>")
-- goto buffer
utils.keymap("n", "<A-1>", "<CMD>BufferLineGoToBuffer 1<CR>")
utils.keymap("n", "<A-2>", "<CMD>BufferLineGoToBuffer 2<CR>")
Expand Down

0 comments on commit 9b85587

Please sign in to comment.