* isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:

[f1], [help], and (char-to-string help-char) instead of "\C-h".
(Bug#6222)
This commit is contained in:
Juri Linkov 2010-05-21 01:01:57 +03:00
parent 5d944a8f7f
commit 50de6a38df
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2010-05-20 Juri Linkov <juri@jurta.org>
* isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
[f1], [help], and (char-to-string help-char) instead of "\C-h".
(Bug#6222)
2010-05-20 Juri Linkov <juri@jurta.org>
* isearch.el (isearch-yank-string): Use isearch-process-search-string.

View file

@ -460,7 +460,9 @@ This is like `describe-bindings', but displays only Isearch keys."
(define-key map "\M-\C-y" 'isearch-yank-char)
(define-key map "\C-y" 'isearch-yank-line)
(define-key map "\C-h" isearch-help-map)
(define-key map (char-to-string help-char) isearch-help-map)
(define-key map [help] isearch-help-map)
(define-key map [f1] isearch-help-map)
(define-key map "\M-n" 'isearch-ring-advance)
(define-key map "\M-p" 'isearch-ring-retreat)