diff options
author | rebuilt <[email protected]> | 2022-08-02 07:17:24 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-02 07:17:24 -0700 |
commit | d53b3743f2a259dbf90446216194ade2bb224ab7 (patch) | |
tree | 24ff812a0ca4b88768982f2b92f6e8c0d345e38b /lua/lvim/core/which-key.lua | |
parent | 1d9b85a50edd5ef643cf81974e92a5121645de19 (diff) | |
parent | a5095db20d5bd4e8ce946ef7d1ea18e15b86bd23 (diff) |
Merge pull request #2873 from benediktms/default-keybind-to-cycle-to-next-buffer
feat(whichkey) add default keybindings to cycle to next buffer
Diffstat (limited to 'lua/lvim/core/which-key.lua')
-rw-r--r-- | lua/lvim/core/which-key.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index 3015781b..8f0f964f 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -1,5 +1,4 @@ local M = {} - M.config = function() lvim.builtin.which_key = { ---@usage disable which-key completely [not recommended] @@ -92,6 +91,7 @@ M.config = function() j = { "<cmd>BufferLinePick<cr>", "Jump" }, f = { "<cmd>Telescope buffers<cr>", "Find" }, b = { "<cmd>BufferLineCyclePrev<cr>", "Previous" }, + n = { "<cmd>BufferLineCycleNext<cr>", "Next" }, -- w = { "<cmd>BufferWipeout<cr>", "Wipeout" }, -- TODO: implement this for bufferline e = { "<cmd>BufferLinePickClose<cr>", |