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

@ -213,9 +213,9 @@ I'd install it first and add its setup line :
- <kbd> Shift </kbd> <kbd> x </kbd> close current tab - <kbd> Shift </kbd> <kbd> x </kbd> close current tab
- <kbd> Shift </kbd> <kbd> t </kbd> open new tab - <kbd> Shift </kbd> <kbd> t </kbd> open new tab
======= =======
- <kbd> Shift </kbd> <kbd> l or s </kbd> cycle through opened tabs - <kbd> Shift </kbd> <kbd> TAB or Shift TAB </kbd> cycle through opened tabs
- <kbd> Shift </kbd> <kbd> d </kbd> close current tab - <kbd> Shift </kbd> <kbd> x </kbd> close current tab
- <kbd> Shift </kbd> <kbd> b </kbd> open new tab - <kbd> Shift </kbd> <kbd> t </kbd> open new tab
>>>>>>> parent of 5272eb3 (Update README.md) >>>>>>> parent of 5272eb3 (Update README.md)
# TODO # TODO

View File

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