GNU bug report logs - #2145
23.0.90; S-SPC should scroll up in view-only buffers

Previous Next

Package: emacs;

Reported by: Rudi Schlatte <rudi <at> constantly.at>

Date: Mon, 2 Feb 2009 01:25:03 UTC

Severity: wishlist

Fixed in version 24.4

Done: Glenn Morris <rgm <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 2145 in the body.
You can then email your comments to 2145 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:
bug#2145; Package emacs. (Mon, 02 Feb 2009 01:25:04 GMT) Full text and rfc822 format available.

Acknowledgement sent to Rudi Schlatte <rudi <at> constantly.at>:
New bug report received and forwarded. Copy sent to Emacs Bugs <bug-gnu-emacs <at> gnu.org>. (Mon, 02 Feb 2009 01:25:04 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):

From: Rudi Schlatte <rudi <at> constantly.at>
To: emacs-pretest-bug <at> gnu.org
Subject: 23.0.90; S-SPC should scroll up in view-only buffers
Date: Mon, 2 Feb 2009 09:19:56 +0800
(This should be filed as "wishlist")

Summary:

S-SPC should scroll up in view-only buffers, such as info, gnus
messages and buffers in view-mode; currently it scrolls down.

Rationale:

Most other programs that display more than a screenful of information
(Firefox, various mail clients, the evince pdf viewer, ...) use SPC to
scroll down and S-SPC (Shift-Space) to scroll up.  Emacs uses SPC (and
S-SPC) to scroll down and <backspace> to scroll up.  Additionally, in
some programs, Backspace is bound to some deleting action (in my email
reader, it moves the current message to Trash).  Paging up and down
through stuff thus requires me to be careful about which program I'm
in; I've accidentally deleted emails after reading too much stuff in
emacs.

Workarounds:

Putting the appropriate define-key forms, e.g.

(define-key view-mode-map (kbd "S-SPC") 'View-scroll-page-backward)
(define-key Info-mode-map (kbd "S-SPC") 'Info-scroll-down)

in the user's init file.




Severity set to `wishlist' from `normal' Request was from Glenn Morris <rgm <at> gnu.org> to control <at> emacsbugs.donarmstrong.com. (Mon, 02 Feb 2009 07:20:04 GMT) Full text and rfc822 format available.

Reply sent to Glenn Morris <rgm <at> gnu.org>:
You have taken responsibility. (Tue, 12 Feb 2013 04:49:02 GMT) Full text and rfc822 format available.

Notification sent to Rudi Schlatte <rudi <at> constantly.at>:
bug acknowledged by developer. (Tue, 12 Feb 2013 04:49:03 GMT) Full text and rfc822 format available.

Message #12 received at 2145-done <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: 2145-done <at> debbugs.gnu.org
Subject: Re: bug#2145: 23.0.90; S-SPC should scroll up in view-only buffers
Date: Mon, 11 Feb 2013 23:48:18 -0500
Version: 24.4

Rudi Schlatte wrote:

> S-SPC should scroll up in view-only buffers, such as info, gnus
> messages and buffers in view-mode; currently it scrolls down.

Sorry for the huge delay. This seemed like a good idea to me, so I did
it in whichever relevant keymaps I could find.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2145; Package emacs. (Tue, 12 Feb 2013 18:00:03 GMT) Full text and rfc822 format available.

Message #15 received at 2145 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> jurta.org>
To: 2145 <at> debbugs.gnu.org
Cc: rgm <at> gnu.org, rudi <at> constantly.at
Subject: Re: bug#2145: 23.0.90; S-SPC should scroll up in view-only buffers
Date: Tue, 12 Feb 2013 19:42:40 +0200
>> S-SPC should scroll up in view-only buffers, such as info,
>> gnus messages and buffers in view-mode; currently it scrolls down.
>
> Sorry for the huge delay. This seemed like a good idea to me, so I did
> it in whichever relevant keymaps I could find.

To do the same for gnus messages is possible with:

(define-key gnus-summary-mode-map [?\S-\ ] 'gnus-summary-prev-page)
(define-key gnus-article-mode-map [?\S-\ ] 'gnus-article-goto-prev-page)

And this is also useful for images:

(define-key image-mode-map [?\S-\ ] 'image-scroll-down)
(define-key doc-view-mode-map [?\S-\ ] 'doc-view-scroll-down-or-previous-page)




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2145; Package emacs. (Tue, 12 Feb 2013 18:55:01 GMT) Full text and rfc822 format available.

Message #18 received at 2145 <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: Juri Linkov <juri <at> jurta.org>
Cc: 2145 <at> debbugs.gnu.org, rudi <at> constantly.at
Subject: Re: bug#2145: 23.0.90; S-SPC should scroll up in view-only buffers
Date: Tue, 12 Feb 2013 13:54:19 -0500
Juri Linkov wrote:

> To do the same for gnus messages is possible with:
>
> (define-key gnus-summary-mode-map [?\S-\ ] 'gnus-summary-prev-page)
> (define-key gnus-article-mode-map [?\S-\ ] 'gnus-article-goto-prev-page)
>
> And this is also useful for images:
>
> (define-key image-mode-map [?\S-\ ] 'image-scroll-down)
> (define-key doc-view-mode-map [?\S-\ ] 'doc-view-scroll-down-or-previous-page)

Please add them then.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2145; Package emacs. (Wed, 13 Feb 2013 08:31:02 GMT) Full text and rfc822 format available.

Message #21 received at 2145 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> jurta.org>
To: Glenn Morris <rgm <at> gnu.org>
Cc: 2145 <at> debbugs.gnu.org, rudi <at> constantly.at
Subject: Re: bug#2145: 23.0.90; S-SPC should scroll up in view-only buffers
Date: Wed, 13 Feb 2013 10:29:30 +0200
>> To do the same for gnus messages is possible with:
>>
>> (define-key gnus-summary-mode-map [?\S-\ ] 'gnus-summary-prev-page)
>> (define-key gnus-article-mode-map [?\S-\ ] 'gnus-article-goto-prev-page)
>>
>> And this is also useful for images:
>>
>> (define-key image-mode-map [?\S-\ ] 'image-scroll-down)
>> (define-key doc-view-mode-map [?\S-\ ] 'doc-view-scroll-down-or-previous-page)
>
> Please add them then.

Added with `ediff-previous-difference' as well.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 13 Mar 2013 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 11 years and 58 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.