* 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:
parent
5d944a8f7f
commit
50de6a38df
2 changed files with 9 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue