fix(mappings): Fix flipped 'Next buffer' & 'Previous buffer'
This commit is contained in:
parent
8a474001f4
commit
b777fe96c3
@ -47,8 +47,8 @@ return {
|
|||||||
-- second key is the lefthand side of the map
|
-- second key is the lefthand side of the map
|
||||||
|
|
||||||
-- navigate buffer tabs
|
-- 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 = "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 = "Previous buffer" },
|
||||||
|
|
||||||
-- mappings seen under group name "Buffer"
|
-- mappings seen under group name "Buffer"
|
||||||
["<Leader>bd"] = {
|
["<Leader>bd"] = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user