Variable: minibuffer-local-shell-command-map
minibuffer-local-shell-command-map is a variable defined in
simple.el.gz.
Value
<XF86Back> previous-history-element
<XF86Forward> next-history-element
<down> next-line-or-history-element
<kp-4> tpu-search-forward-exit
<kp-5> tpu-search-backward-exit
<kp-enter> exit-minibuffer
<next> next-history-element
<prior> previous-history-element
<up> previous-line-or-history-element
C-<tab> file-cache-minibuffer-complete
C-g minibuffer-keyboard-quit
C-j exit-minibuffer
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 completion-at-point
TAB self-insert-command
Documentation
Keymap used for completing shell commands in minibuffer.
Probably introduced at or before Emacs version 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defvar minibuffer-local-shell-command-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map minibuffer-local-map)
(define-key map "\t" 'completion-at-point)
map)
"Keymap used for completing shell commands in minibuffer.")