mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(keymaps): add missing wk entries for buffer switching; lowercase UI in menu (#45)
Co-authored-by: Andreas Gerlach <andreas.gerlach@xarvio.com>
This commit is contained in:
parent
ed87ba777f
commit
46dba8f67e
3 changed files with 5 additions and 1 deletions
|
@ -46,6 +46,8 @@ return {
|
|||
init = function()
|
||||
vim.keymap.set("n", "<s-h>", "<cmd>BufferLineCyclePrev<cr>", { desc = "Prev Buffer" })
|
||||
vim.keymap.set("n", "<s-l>", "<cmd>BufferLineCycleNext<cr>", { desc = "Next Buffer" })
|
||||
vim.keymap.set("n", "<leader>b[", "<cmd>BufferLineCyclePrev<cr>", { desc = "Previous" })
|
||||
vim.keymap.set("n", "<leader>b]", "<cmd>BufferLineCycleNext<cr>", { desc = "Next" })
|
||||
end,
|
||||
opts = {
|
||||
options = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue