Skip to content

Commit

Permalink
nvim: harpoon: only clear with shifted keybinds
Browse files Browse the repository at this point in the history
  • Loading branch information
FredeEB committed Dec 1, 2023
1 parent 531fb28 commit 2a84b6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nvim/.config/nvim/after/plugin/harpoon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ m.keys {
{ 'n', '<M-;>', function() require('harpoon.ui').nav_file(4) end },

{ 'n', '<M-c>', require('harpoon.cmd-ui').toggle_quick_menu },
{ 'n', '<M-a>', function() run_command(true, 1) end },
{ 'n', '<M-s>', function() run_command(true, 2) end },
{ 'n', '<M-d>', function() run_command(true, 3) end },
{ 'n', '<M-f>', function() run_command(true, 4) end },
{ 'n', '<M-a>', function() run_command(false, 1) end },
{ 'n', '<M-s>', function() run_command(false, 2) end },
{ 'n', '<M-d>', function() run_command(false, 3) end },
{ 'n', '<M-f>', function() run_command(false, 4) end },
{ 'n', '<M-S-a>', function() run_command(true, 1) end },
{ 'n', '<M-S-s>', function() run_command(true, 2) end },
{ 'n', '<M-S-d>', function() run_command(true, 3) end },
Expand Down

0 comments on commit 2a84b6d

Please sign in to comment.