From 19af81095671af81e7af0b23b871745017d93d14 Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 30 Mar 2025 12:41:06 +0200 Subject: [PATCH] addet tab and s-tab for tab navigation --- lua/plugins/astrocore.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/plugins/astrocore.lua b/lua/plugins/astrocore.lua index c8f67a0..5d4d321 100644 --- a/lua/plugins/astrocore.lua +++ b/lua/plugins/astrocore.lua @@ -47,8 +47,8 @@ return { -- second key is the lefthand side of the map -- navigate buffer tabs - ["]b"] = { function() require("astrocore.buffer").nav(vim.v.count1) end, desc = "Next buffer" }, - ["[b"] = { function() require("astrocore.buffer").nav(-vim.v.count1) end, desc = "Previous buffer" }, + [""] = { function() require("astrocore.buffer").nav(vim.v.count1) end, desc = "Next buffer" }, + [""] = { function() require("astrocore.buffer").nav(-vim.v.count1) end, desc = "Previous buffer" }, -- mappings seen under group name "Buffer" ["bd"] = {