diff options
-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>", |