About undefined keys in keypad mode #271
-
If keypad mode is designed for executing commands, with a leader keymap(as shown below) without defining (meow-leader-define-key
;; SPC j/k will run the original command in MOTION state.
'("j" . "H-j")
'("k" . "H-k")
;; Use SPC (0-9) for digit arguments.
'("1" . meow-digit-argument)
'("2" . meow-digit-argument)
'("3" . meow-digit-argument)
'("4" . meow-digit-argument)
'("5" . meow-digit-argument)
'("6" . meow-digit-argument)
'("7" . meow-digit-argument)
'("8" . meow-digit-argument)
'("9" . meow-digit-argument)
'("0" . meow-digit-argument)
'("/" . meow-keypad-describe-key)
'("?" . meow-cheatsheet)) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
I think this is a pretty reasonable request. Please rebuild your meow on the latest commit, because in dcc705b I added the variable I don't think that this is good for most users though, so I erred on the side of caution and left the default value to |
Beta Was this translation helpful? Give feedback.
I think this is a pretty reasonable request. Please rebuild your meow on the latest commit, because in dcc705b I added the variable
meow-keypad-self-insert-undefined
, which you would want to set to nil.I don't think that this is good for most users though, so I erred on the side of caution and left the default value to
t
, so this does not change default behavior.