mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
* lisp/help-mode.el (help-mode-map): Bind "l" to help-go-back,
and "r" to help-go-forward for compatibity with Info. Fixes: debbugs:16178
This commit is contained in:
parent
70695f1351
commit
b216f0a6cf
2 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2013-12-18 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* help-mode.el (help-mode-map): Bind "l" to help-go-back,
|
||||
and "r" to help-go-forward for compatibity with Info. (Bug#16178)
|
||||
|
||||
2013-12-18 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
* eshell/em-prompt.el (eshell-emit-prompt): Fix last change. (Bug#16186)
|
||||
|
|
|
|||
|
|
@ -37,6 +37,8 @@
|
|||
(set-keymap-parent map (make-composed-keymap button-buffer-map
|
||||
special-mode-map))
|
||||
(define-key map [mouse-2] 'help-follow-mouse)
|
||||
(define-key map "l" 'help-go-back)
|
||||
(define-key map "r" 'help-go-forward)
|
||||
(define-key map "\C-c\C-b" 'help-go-back)
|
||||
(define-key map "\C-c\C-f" 'help-go-forward)
|
||||
(define-key map [XF86Back] 'help-go-back)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue