fix(mappings): Fix issue with wrong imports in commented out code

pull/3/head
Uzair Aftab 2023-12-07 12:25:39 +01:00 committed by Micah Halter
parent e5ff5111a5
commit ba2038a9c6
1 changed files with 2 additions and 2 deletions

View File

@ -12,11 +12,11 @@ return {
-- navigate buffer tabs with `H` and `L`
-- L = {
-- function() require("astronvim.utils.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end,
-- function() require("astrocore.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end,
-- desc = "Next buffer",
-- },
-- H = {
-- function() require("astronvim.utils.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end,
-- function() require("atsrocore.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end,
-- desc = "Previous buffer",
-- },