Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

move cursor to the middle of the screen in emacs

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??

like image 759
qstack Avatar asked Apr 22 '15 00:04

qstack


1 Answers

You can do this with move-to-window-line-top-bottom (bound to M-r). See (info "(emacs) Moving point") for more information.

like image 92
Kyle Meyer Avatar answered Oct 12 '22 01:10

Kyle Meyer