-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is <remap>
in minibuffer?
#592
Comments
Have you found something out meanwhile? |
@zikajk I didn't find anything in meow github, but in emacs you can encounter when you are reading keymap. For example, when you run M-x describe-keymap ENTER meow-keymap, the new buffer will open with i formation |
I found this pretty annoying as well, since it persists across all meow-keypads. The issue might be related to the function It doesn't look like (defun advice-remove-meow-remap (orig-fun &rest args)
"Advice to remove the remap entry from the keymap returned by foo."
(let ((keymap (apply orig-fun args)))
(if-let ((remap (assq 'remap keymap)))
(delq remap keymap)
keymap)))
(advice-add #'meow--keypad-get-keymap-for-describe :around #'advice-remove-meow-remap) |
Hi, what does
<remap>
key mean in minibuffer? I can't find any information about it outside this issue #481The text was updated successfully, but these errors were encountered: