fix(mappings): Fix flipped 'Next buffer' & 'Previous buffer'

This commit is contained in:
Hussain 2024-05-23 07:58:50 +03:00 committed by Micah Halter
parent 8a474001f4
commit b777fe96c3

View File

@ -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" },
["]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" },
-- mappings seen under group name "Buffer"
["<Leader>bd"] = {