adjusted the bindings to be TAB and S-TAB for buffers.

This commit is contained in:
Henri Vandersleyen 2021-05-08 22:57:38 -07:00
parent 998d6c1e80
commit 9783f87787
No known key found for this signature in database
GPG key ID: 795A7EF27EBE8A8D
2 changed files with 5 additions and 5 deletions

View file

@ -73,5 +73,5 @@ map("n", "<S-t>", [[<Cmd>tabnew<CR>]], opt)
map("n", "<S-x>", [[<Cmd>bdelete<CR>]], opt)
-- tabnew and tabprev
map("n", "<S-l>", [[<Cmd>BufferLineCycleNext<CR>]], opt) -- Another alternate is TAB/S-TAB or C-,/C-.
map("n", "<S-p>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)
map("n", "<TAB>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
map("n", "<S-TAB>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)