Variable: minibuffer-inactive-mode-map
minibuffer-inactive-mode-map is a variable defined in
minibuffer.el.gz.
Value
- negative-argument
<down-mouse-1> ignore
<mouse-1> view-echo-area-messages
SPC..~ undefined
b switch-to-buffer-other-frame
i info
m mail
n make-frame
o..\x3FFFFF digit-argument
o..\x3FFFFF find-file-other-frame
Documentation
Keymap for use in the minibuffer when it is not active.
The non-mouse bindings in this keymap can only be used in minibuffer-only frames, since the minibuffer can normally not be selected when it is not active.
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
;;; Major modes for the minibuffer
(defvar minibuffer-inactive-mode-map
(let ((map (make-keymap)))
(suppress-keymap map)
(define-key map "e" 'find-file-other-frame)
(define-key map "f" 'find-file-other-frame)
(define-key map "b" 'switch-to-buffer-other-frame)
(define-key map "i" 'info)
(define-key map "m" 'mail)
(define-key map "n" 'make-frame)
(define-key map [mouse-1] 'view-echo-area-messages)
;; So the global down-mouse-1 binding doesn't clutter the execution of the
;; above mouse-1 binding.
(define-key map [down-mouse-1] #'ignore)
map)
"Keymap for use in the minibuffer when it is not active.
The non-mouse bindings in this keymap can only be used in minibuffer-only
frames, since the minibuffer can normally not be selected when it is
not active.")