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:
parent
5272eb3f19
commit
dc78a13053
|
@ -208,7 +208,7 @@ I'd install it first and add its setup line :
|
||||||
|
|
||||||
- **Managing tabs with bufferline!**
|
- **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> x </kbd> close current tab
|
||||||
- <kbd> Shift </kbd> <kbd> t </kbd> open new tab
|
- <kbd> Shift </kbd> <kbd> t </kbd> open new tab
|
||||||
|
|
||||||
|
|
|
@ -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-,>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
|
map("n", "<S-l>", [[<Cmd>BufferLineCycleNext<CR>]], opt) -- Another alternate is TAB/S-TAB or C-,/C-.
|
||||||
map("n", "<S-.>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)
|
map("n", "<S-p>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)
|
||||||
|
|
Loading…
Reference in New Issue