emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: vertical scrollbar error on MS Windows


From: Nick Roberts
Subject: Re: vertical scrollbar error on MS Windows
Date: Tue, 20 Feb 2007 12:16:07 +1300

 > > That's right, but still it is not worse than before.
 > 
 > Aha. I didn't know, I always work without scroll bars.
 > 
 > > I don't see an easy fix for this, so let's leave it for
 > > after the release.
 > 
 > Agreed.

Yes, the notion that you can't scroll without a scrollbar is nonsense.  I
use the following in my .emacs:

  (defun scroll-up-one-line ()
  "Move down one line at a time."
  (interactive)
  (scroll-up 1))

  (defun scroll-down-one-line ()
  "Move up one line at a time."
  (interactive)
  (scroll-down 1))

  (define-key global-map  [f5] 'scroll-up-one-line)
  (define-key global-map  [f6] 'scroll-down-one-line)

-- 
Nick                                           http://www.inet.net.nz/~nickrob




reply via email to

[Prev in Thread] Current Thread [Next in Thread]