restored the tab binding to the original shift l | p. Consideration

should be given by the owner of the repo if C-,|C-. is better as a
binding.
This commit is contained in:
Henri Vandersleyen 2021-05-08 22:21:29 -07:00
parent 5272eb3f19
commit dc78a13053
No known key found for this signature in database
GPG Key ID: 795A7EF27EBE8A8D
2 changed files with 3 additions and 3 deletions

View File

@ -208,7 +208,7 @@ I'd install it first and add its setup line :
- **Managing tabs with bufferline!**
- <kbd> Shift </kbd> <kbd> , or . </kbd> cycle through opened tabs
- <kbd> Shift </kbd> <kbd> l or p </kbd> cycle through opened tabs
- <kbd> Shift </kbd> <kbd> x </kbd> close current tab
- <kbd> Shift </kbd> <kbd> t </kbd> open new tab

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-,>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
map("n", "<S-.>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)
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)