XVirtusX
XVirtusX

Reputation: 709

How to execute custom emacs keybindings when CUA MODE is enabled?

C-v originally in emacs moves one screenful, but when in cua mode, it yanks text. So, how do I move one screenful again in cua mode?

Upvotes: 0

Views: 136

Answers (1)

Drew
Drew

Reputation: 30699

Try the PageDown key, aka <next>. It is bound to command cua-scroll-up.

(You should consult the doc for CUA mode for such questions. It should let you know what keys are bound to normally-bound keys that it usurps.)

Upvotes: 1

Related Questions