Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emacs: how do you disable auto-recentering?

Tags:

emacs

I'm using Emacs on Mac OS and cannot seem to disable auto-recentering feature; it keeps jumping buffer window so that cursor is in the middle of screen. I tried setting "scroll-step=20, scroll-conservatively=200", and it works for a couple of hours and then it starts all over again.

like image 338
FreeTraveler Avatar asked Aug 22 '13 17:08

FreeTraveler


1 Answers

In my .emacs I have

(setq scroll-step 1)
(setq scroll-conservatively 10000)
(setq auto-window-vscroll nil)

That seems to work well for me.

like image 101
Michael Avatar answered Nov 16 '22 11:11

Michael