Variable: mh-search-mode-map

mh-search-mode-map is a variable defined in mh-search.el.gz.

Value

C-c ?        mh-help
C-c C-c      mh-index-do-search
C-c C-f C-b  mh-to-field
C-c C-f C-c  mh-to-field
C-c C-f C-s  mh-to-field
C-c C-f C-t  mh-to-field
C-c C-f RET  mh-to-field
C-c C-f b    mh-to-field
C-c C-f c    mh-to-field
C-c C-f m    mh-to-field
C-c C-f s    mh-to-field
C-c C-f t    mh-to-field
C-c C-p      mh-pick-do-search

Documentation

Keymap for MH-Search mode.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-search.el.gz
(define-derived-mode mh-search-mode fundamental-mode "MH-Search"
  "Mode for creating search templates in MH-E.
\\<mh-search-mode-map>
Edit this template by entering your search criteria in an
appropriate header field that is already there, or create a new
field yourself. If the string you're looking for could be
anywhere in a message, then place the string underneath the row
of dashes.

To perform the search, type \\[mh-index-do-search].

Sometimes you're searching for text that is either not indexed,
or hasn't been indexed yet. In this case you can override the
default method with the pick method by running the command
\\[mh-pick-do-search].

The hook `mh-search-mode-hook' is called upon entry to this mode.

\\{mh-search-mode-map}"

  (mh-set-help mh-search-mode-help-messages))