[Top][All Lists]
[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
- Re: vertical scrollbar error on MS Windows, Kim F. Storm, 2007/02/19
- Re: vertical scrollbar error on MS Windows, Juanma Barranquero, 2007/02/19
- Re: vertical scrollbar error on MS Windows, Lennart Borgman (gmail), 2007/02/19
- Re: vertical scrollbar error on MS Windows, Peter Tury, 2007/02/19
- Re: vertical scrollbar error on MS Windows, Stephan Hennig, 2007/02/22
- Re: vertical scrollbar error on MS Windows, Jason Rumney, 2007/02/22
- Re: vertical scrollbar error on MS Windows, Kim F. Storm, 2007/02/22
- Re: vertical scrollbar error on MS Windows, Stephan Hennig, 2007/02/22
- Re: vertical scrollbar error on MS Windows, Kim F. Storm, 2007/02/22
- Re: vertical scrollbar error on MS Windows, Stefan Monnier, 2007/02/22