emacs stop scrolling after screen full of text using -


i new emacs user , feel uncomfortable when scroll buffer using mouse in emacs. keep scrolling, emacs stops when last line of buffer hits top visible row. though minibuffer screams end of buffer, scrolling keeps going on, annoying.

how can make emacs behave other editor/browser while scrolling using mouse?

try adding .emacs ( ~/.emacs ). works me on osx. more info here

;; scroll 1 line @ time (less "jumpy" defaults)  (setq mouse-wheel-scroll-amount '(1 ((shift) . 1))) ;; 1 line @ time  (setq mouse-wheel-progressive-speed nil) ;; don't accelerate scrolling  (setq mouse-wheel-follow-mouse 't) ;; scroll window under mouse  (setq scroll-step 1) ;; keyboard scroll 1 line @ time 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -