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-keymap minibuffer-inactive-mode-map
:doc "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."
:full t
:suppress t
"e" #'find-file-other-frame
"f" #'find-file-other-frame
"b" #'switch-to-buffer-other-frame
"i" #'info
"m" #'mail
"n" #'make-frame
"<mouse-1>" #'view-echo-area-messages
;; So the global down-mouse-1 binding doesn't clutter the execution of the
;; above mouse-1 binding.
"<down-mouse-1>" #'ignore)