From e6056c4ed2b300c905bae3e548d177268dc3ce35 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Sun, 14 Apr 2024 01:40:13 +0200 Subject: [PATCH] more accurate keymap depiction --- lua/custom/plugins/harpoon.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/custom/plugins/harpoon.lua b/lua/custom/plugins/harpoon.lua index 4f1c337..fa6d2f4 100644 --- a/lua/custom/plugins/harpoon.lua +++ b/lua/custom/plugins/harpoon.lua @@ -42,10 +42,10 @@ return { harpoon:list():remove() end, { desc = '[H]arpoon [R]emove' }) -- Toggle previous & next buffers stored within Harpoon list - vim.keymap.set('n', '', function() + vim.keymap.set('n', '', function() harpoon:list():prev() end) - vim.keymap.set('n', '', function() + vim.keymap.set('n', '', function() harpoon:list():next() end) end,