On Thursday 31 May 2001 17:04, Brian Nelson wrote: > I prefer to configure the apps individually. For example, add something > like this to your ~/.emacs > > ; Allow mouse wheel to scroll > (defun up-slightly () (interactive) (scroll-up 5)) > (defun down-slightly () (interactive) (scroll-down 5)) > (global-set-key [mouse-4] 'down-slightly) > (global-set-key [mouse-5] 'up-slightly)
Cool, that did the job! I like it not because I prefer to configure the apps individually but because it took only a few seconds to set up.