Open LukeWood opened 1 month ago
Hi @LukeWood,
I was facing a similar issue and for me the problem was the keymap of <C-m>
to toggle harpoon.
Neovim seems to link <C-m>
to <CR>
and this interferes.
See #515 and #267
In the end I didn't need to do vim.keymap.set('n', '<cr>', '<nop>');
or vim.keymap.del("n", "<CR>")
, using another keymap was enough.
Hope this helps.
Hi - I love harpoon. thanks for making this. It is absolutely incredible for working on features in big projects.
I've found one little use that I haven't been able to resolve. I like to keep my key unbound in normal mode - in particular because I have bindings that I use a LOT to .
Here is my harpoon setup - Notice the first comment, following "--- I'd like to unbind this.". More specifically, if you bind to , the hotkey C-m also stops working for some reason.
Any ideas what could be going on - or a better solution? I'd like to keep bound when the menu is open of course, but I don't like accidentally hitting and having my harpoon menu be toggled back open when I'm just iterating on some code (I mash to iterate through trouble.nvim)