If I type C-f paredit-forward-slurp-sexp
, Emacs tells me the command is mapped to C-)
. Yet through C-h k
I realized that both C-)
and )
run evil-forward-sentence
. If I do C-f evil-forward-sentence
, Emacs tells me it is bound only to )
.
If I evaluate (key-binding (kbd "C-)"))
the result is paredit-forward-slurp-sexp
. If I go through what describe-bindings
prints, C-) is shown as associated with paredit-forward-slurp-sexp
, There are other paredit associations in the listing, like M-<right arrow>
, which works fine.
Why is this and how do I make the C-)
behave the way I want.