Variable: isearch-minibuffer-local-map

isearch-minibuffer-local-map is a variable defined in isearch-x.el.gz.

Value

<XF86Back>              previous-history-element
<XF86Forward>           next-history-element
<down>                  next-line-or-history-element
<next>                  next-history-element
<prior>                 previous-history-element
<up>                    previous-line-or-history-element
<with-input-method>     isearch-with-input-method
<with-keyboard-coding>  isearch-with-keyboard-coding
C-<tab>                 file-cache-minibuffer-complete
C-g                     minibuffer-keyboard-quit
C-j                     exit-minibuffer
C-x <down>              minibuffer-complete-defaults
C-x <up>                minibuffer-complete-history
M-<                     minibuffer-beginning-of-buffer
M-n                     next-history-element
M-p                     previous-history-element
M-r                     previous-matching-history-element
M-s                     next-matching-history-element
RET                     exit-minibuffer
TAB                     self-insert-command

Documentation

Keymap to use in minibuffer for multibyte character inputting in isearch.

Source Code

;; Defined in /usr/src/emacs/lisp/international/isearch-x.el.gz
(defvar isearch-minibuffer-local-map
  (let ((map (copy-keymap minibuffer-local-map)))
    (define-key map [with-keyboard-coding] 'isearch-with-keyboard-coding)
    (define-key map [with-input-method] 'isearch-with-input-method)
    map)
  "Keymap to use in minibuffer for multibyte character inputting in isearch.")