From 9783f8778747a222ac5faf3b54af649b8d0a89ae Mon Sep 17 00:00:00 2001 From: Henri Vandersleyen Date: Sat, 8 May 2021 22:57:38 -0700 Subject: [PATCH] adjusted the bindings to be TAB and S-TAB for buffers. --- README.md | 6 +++--- lua/top-bufferline.lua | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c1cfced..0ef17d1 100644 --- a/README.md +++ b/README.md @@ -213,9 +213,9 @@ I'd install it first and add its setup line : - Shift x close current tab - Shift t open new tab ======= -- Shift l or s cycle through opened tabs -- Shift d close current tab -- Shift b open new tab +- Shift TAB or Shift TAB cycle through opened tabs +- Shift x close current tab +- Shift t open new tab >>>>>>> parent of 5272eb3 (Update README.md) # TODO diff --git a/lua/top-bufferline.lua b/lua/top-bufferline.lua index 3ed1c8a..bcf5048 100644 --- a/lua/top-bufferline.lua +++ b/lua/top-bufferline.lua @@ -73,5 +73,5 @@ map("n", "", [[tabnew]], opt) map("n", "", [[bdelete]], opt) -- tabnew and tabprev -map("n", "", [[BufferLineCycleNext]], opt) -- Another alternate is TAB/S-TAB or C-,/C-. -map("n", "", [[BufferLineCyclePrev]], opt) +map("n", "", [[BufferLineCycleNext]], opt) +map("n", "", [[BufferLineCyclePrev]], opt)