Reputation: 709
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
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