mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-28 05:54:03 +02:00
[Refactor] Adopt which key mapping style (#1210)
* Refactor keymappings to match which-key style * Update confif example + remove redundant way of registering mappings
This commit is contained in:
parent
8e88bf5258
commit
6d14d7b5da
6 changed files with 70 additions and 84 deletions
|
@ -2,8 +2,8 @@ lvim.builtin.bufferline = {
|
|||
keymap = {
|
||||
values = {
|
||||
normal_mode = {
|
||||
{ "<S-l>", ":BufferNext<CR>" },
|
||||
{ "<S-h>", ":BufferPrevious<CR>" },
|
||||
["<S-l>"] = { ":BufferNext<CR>" },
|
||||
["<S-h>"] = { ":BufferPrevious<CR>" },
|
||||
},
|
||||
},
|
||||
opts = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue