From 2a84b6dd358ea504e0ab636d27ed645c988edaec Mon Sep 17 00:00:00 2001 From: Frede Braendstrup Date: Fri, 1 Dec 2023 16:43:04 +0100 Subject: [PATCH] nvim: harpoon: only clear with shifted keybinds --- nvim/.config/nvim/after/plugin/harpoon.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nvim/.config/nvim/after/plugin/harpoon.lua b/nvim/.config/nvim/after/plugin/harpoon.lua index a38653b..d40992d 100644 --- a/nvim/.config/nvim/after/plugin/harpoon.lua +++ b/nvim/.config/nvim/after/plugin/harpoon.lua @@ -26,10 +26,10 @@ m.keys { { 'n', '', function() require('harpoon.ui').nav_file(4) end }, { 'n', '', require('harpoon.cmd-ui').toggle_quick_menu }, - { 'n', '', function() run_command(true, 1) end }, - { 'n', '', function() run_command(true, 2) end }, - { 'n', '', function() run_command(true, 3) end }, - { 'n', '', function() run_command(true, 4) end }, + { 'n', '', function() run_command(false, 1) end }, + { 'n', '', function() run_command(false, 2) end }, + { 'n', '', function() run_command(false, 3) end }, + { 'n', '', function() run_command(false, 4) end }, { 'n', '', function() run_command(true, 1) end }, { 'n', '', function() run_command(true, 2) end }, { 'n', '', function() run_command(true, 3) end },