Merge pull request #42 from Vanderscycle/main

avoid using default keybinds!
This commit is contained in:
siduck76 2021-05-09 14:03:11 +05:30 committed by GitHub
commit e8e7d28eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -208,9 +208,9 @@ I'd install it first and add its setup line :
- **Managing tabs with bufferline!** - **Managing tabs with bufferline!**
- <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
# 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-,>", [[<Cmd>BufferLineCycleNext<CR>]], opt) map("n", "<TAB>", [[<Cmd>BufferLineCycleNext<CR>]], opt)
map("n", "<S-.>", [[<Cmd>BufferLineCyclePrev<CR>]], opt) map("n", "<S-TAB>", [[<Cmd>BufferLineCyclePrev<CR>]], opt)