fix(mappings): Fix flipped 'Next buffer' & 'Previous buffer'
This commit is contained in:
		@@ -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"] = {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user