-
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
Distringuishing between tab
key and i
key in leader key map?
#645
Comments
My understanding is that Unless we implement something to do low level key translation, that will be KEYPAD 2.0. |
OK. Thank you for the explanation. In that case, is it possible to separate tab and |
I think the best practice here is to not use And you can't assume different modifiers for different keymap. How about use |
To make (keymap-unset goto-map "TAB")
(keymap-set goto-map "<tab>" #'move-to-column)
(keymap-set goto-map "C-TAB" #'move-to-column) However, the pop-up for keybindings (both Which Key mode and Meow's built-in method) still shows that |
Currently, the binding for
imenu
(M-g i
,M-g M-i
) is overridden by the binding formove-to-column
(M-g TAB
).I have undone the binding on
M-g TAB
and moved it toM-g <tab>
. This stops the keypad state from interpreting theSPC m g i
asM-g TAB
(M-g C-i
). However, it looks like the keypad state cannot find the binding for<tab>
. When I pressSPC m g <tab>
, it is translated toM-g TAB
, which is no longer bound.Is there a way to have they keypad state use the binding for
<tab>
when there is no binding forTAB
?The text was updated successfully, but these errors were encountered: