Keypad: Translate "x b" to "C-x b" instead of "C-x C-b" #754
-
I'm trying to make meow's keypad/leader feel more like vanilla Emacs. The one place I'm stuck is getting As far as I can tell there's no (defvar-keymap pjones:ctl-x-map
:doc "C-x map with some things moved around."
:parent ctl-x-map
"C-b" (keymap-lookup ctl-x-map "b")
"b" (keymap-lookup ctl-x-map "C-b"))
(meow-leader-define-key
(cons "x" pjones:ctl-x-map)) However, this doesn't seem to work. I'm sure there's a better way to achieve my goal and would love suggestions. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hey, I guess you are looking for this.
This will use
This is a good solution if you prefer built key bindings instead of building your own |
Beta Was this translation helpful? Give feedback.
This behavior is configured via
meow-keypad-start-keys
.