# HG changeset patch # User Oleksandr Gavenko # Date 1320866142 -7200 # Node ID 6168f8ab647923c0c19cff53933b160887b90a7e # Parent feb479e720e1f04c91ed9871f8df0fc809df3eb3 Fix scrolling speed as I am use settings that documentation recommend avoid. diff -r feb479e720e1 -r 6168f8ab6479 .emacs-my --- a/.emacs-my Wed Nov 09 20:51:40 2011 +0200 +++ b/.emacs-my Wed Nov 09 21:15:42 2011 +0200 @@ -463,8 +463,11 @@ (defvar my-scroll-margin 4) (setq-default - scroll-step 1 - scroll-conservatively my-scroll-margin + ;; Set to zero as this recomment documentation. + scroll-step 0 + ;; If the value is greater than 100, redisplay will never recenter point, but + ;; will always scroll just enough text to bring point into view + scroll-conservatively 1000 scroll-preserve-screen-position t )