Variable: isearch-help-map

isearch-help-map is a variable defined in isearch.el.gz.

Value

<f1>    isearch-help-for-help
<help>  isearch-help-for-help
?       isearch-help-for-help
C-h     isearch-help-for-help
b       isearch-describe-bindings
k       isearch-describe-key
m       isearch-describe-mode
q       help-quit

Documentation

Keymap for characters following the Help key for Isearch mode.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/isearch.el.gz
;; Define isearch help map.

(defvar isearch-help-map
  (let ((map (make-sparse-keymap)))
    (define-key map (char-to-string help-char) 'isearch-help-for-help)
    (define-key map [help] 'isearch-help-for-help)
    (define-key map [f1] 'isearch-help-for-help)
    (define-key map "?" 'isearch-help-for-help)
    (define-key map "b" 'isearch-describe-bindings)
    (define-key map "k" 'isearch-describe-key)
    (define-key map "m" 'isearch-describe-mode)
    (define-key map "q" 'help-quit)
    map)
  "Keymap for characters following the Help key for Isearch mode.")