Can't bind default emacs keys without conflicts #142
-
Say for example I bind a command to I continue to run into these conflicts, and I don't understand why this would be desirable behavior. Is there any workaround for this or am I just using Meow wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi,
Meow is designed to use with vanilla Emacs, especially with almost no tweaking on basic keybindings. |
Beta Was this translation helpful? Give feedback.
Hi,
There's a variable called
meow--kbd-forward-char
, if you really have to change the keybinding, you have to change this variable.For reason, I can give some examples:
if you want to forward a character, you use
forward-char
. But if you are using vterm, the command onC-f
is notforward-char
, instead it isvterm-send-C-f
. If we useforward-char
, it will not work in vterm(But actually, currently adapting with vterm is not complete, forward word still using a command, not command onM-f
.).If you want to forward delete a char, you use
delete-char
. But when usingsmartparens
, it will be remapped tosp-delete-char
which can keep the balance of parentheses.Meow is designed to use wit…