From ba2038a9c629effc37fbbd9308d205112b11675d Mon Sep 17 00:00:00 2001 From: Uzair Aftab <48220549+Uzaaft@users.noreply.github.com> Date: Thu, 7 Dec 2023 12:25:39 +0100 Subject: [PATCH] fix(mappings): Fix issue with wrong imports in commented out code --- lua/plugins/mappings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/plugins/mappings.lua b/lua/plugins/mappings.lua index 808cc82..e5af228 100644 --- a/lua/plugins/mappings.lua +++ b/lua/plugins/mappings.lua @@ -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", -- },