Replies: 1 comment 2 replies
-
How to disable marks plugin for which-key? That stands to be the quickest way for me outside of disabling whichkey to unblock my editor being broken at the moment. I don't use marks (manually). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I map backtick to
%
's (bracket matching) functionality via the lua bindThis I have been doing for 10+ years so I'm pretty committed to it in terms of muscle memory and I fidget around vim spamming backtick all the time these days. What this does is a recursive remap so it ordinarily takes backtick away from also being able to refer to marks. I already have the quote key to do that with anyway.
With which-key v3, it is now giving me the same menu that I get if I type
'
(single quote), which is the remaining way for me to hop to a mark.I'd like to note that my mapping still works, so hitting backtick and 1 (based on the which-key menu showing a mark to go to for the mark named
'1
) will simply cause%1
to be issued which is just going to hop to the match, and leave a1
in the number accumulator, whatever that is called. What this means is that which-key appears to be assuming and mapping backtick to show the marks menu but it's already clearly been rebound to%
and functions as such.How can I fix this issue? Maybe there is a way to defer which-key startup so it learns about this particular map and gets out of my way?
Here is my lazy setup for the plugin, which is unchanged from when i introduced it a year or more ago:
Beta Was this translation helpful? Give feedback.
All reactions