all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* S-tab and <backtab>
@ 2003-08-25  3:13 Paul Pogonyshev
  0 siblings, 0 replies; only message in thread
From: Paul Pogonyshev @ 2003-08-25  3:13 UTC (permalink / raw)


It seems that name "backtab" should imply opposite to tab functionality
of S-tab/<backtab>.  In `info-mode' one can use M-tab to go backward
(apart from <p>), but on modern desktops (KDE and Gnome) M-tab is
typically bound to switching between windows and typing <esc tab> is
very inconvenient.  Besides, on the same desktops <shift> is consistently
used for reversing and so S-tab is used as the opposite of <tab>.

Finally, S-tab is used for "going backward" in at least `man-mode' and
`custom-mode'.  So i think the following patch is well justified.

Paul Pogonyshev


2003-08-25  Paul Pogonyshev  <pogonyshev@gmx.net>

	* info.el (Info-mode-map): Bind S-tab and <backtab> to
	`Info-prev-reference'.


*** info.el.~1.368.~	2003-08-21 01:53:09.000000000 +0000
--- info.el	2003-08-25 02:22:01.000000000 +0000
***************
*** 2257,2262 ****
--- 2257,2264 ----
    (define-key Info-mode-map "\C-m" 'Info-follow-nearest-node)
    (define-key Info-mode-map "\t" 'Info-next-reference)
    (define-key Info-mode-map "\e\t" 'Info-prev-reference)
+   (define-key Info-mode-map [(shift tab)] 'Info-prev-reference)
+   (define-key Info-mode-map [backtab] 'Info-prev-reference)
    (define-key Info-mode-map "1" 'Info-nth-menu-item)
    (define-key Info-mode-map "2" 'Info-nth-menu-item)
    (define-key Info-mode-map "3" 'Info-nth-menu-item)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-08-25  3:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-25  3:13 S-tab and <backtab> Paul Pogonyshev

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.