Emacs: how can I just show the next line when I get to the last line?

when I move the cursor up or down and it reaches the first / last line of the view (the part of the file that was shown), it “skips”, so it shows up / next half of the page view instead of just showing the front / next line (for example , in vi).

So how can I just show the next line?

Hello

Xavi

+4
source share
1 answer

There are several different ways to control this. See the documentation for the scroll-step and scroll-conservatively variables. Also a guide here .

Sort of:

 Mx set-variable<RET> scroll-conservatively<RET> 3<RET> 

Or more constantly:

 Mx customize-variable<RET> scroll-conservatively<RET> 
+5
source

All Articles