15 lines
406 B
Lua
15 lines
406 B
Lua
-- Display mappings
|
|
--
|
|
|
|
local wk = require 'which-key'
|
|
|
|
wk.add {
|
|
mode = { 'n', 'v', 'i' },
|
|
{ '<leader>E', group = 'Affichage' }, -- group
|
|
{ '<C-PageUp>', '<CMD>bprevious<CR>', desc = 'Buffer précédent', silent = true },
|
|
{ '<C-PageDown>', '<CMD>bnext<CR>', desc = 'Buffer suivant', silent = true },
|
|
}
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|