Reputation: 769
In vim you have the keys which move the cursor and not the page
H -- move to top of screen
L -- move to bottom of screen
M -- move to middle of screen
Is there something similar in emacs??
Upvotes: 9
Views: 2585
Reputation: 18375
…and the mandatory comment: you can do the same if you use evil-mode, the vim layer.
Install (with melpa):
package-install evil RET
use:
M-x evil-mode
Upvotes: 1
Reputation: 1586
You can do this with move-to-window-line-top-bottom
(bound to
M-r
). See (info "(emacs) Moving point")
for more information.
Upvotes: 19