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
Post a Comment