Variable: read-char-from-minibuffer-map
read-char-from-minibuffer-map is a variable defined in subr.el.gz.
Value
read-char-from-minibuffer-insert-other
<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-M-v minibuffer-scroll-other-window
C-g minibuffer-keyboard-quit
C-j exit-minibuffer
C-l minibuffer-recenter-top-bottom
C-v minibuffer-scroll-up-command
C-x <down> minibuffer-complete-defaults
C-x <up> minibuffer-complete-history
M-< minibuffer-beginning-of-buffer
M-<prior> minibuffer-scroll-other-window-down
M-n next-history-element
M-p previous-history-element
M-r previous-matching-history-element
M-s next-matching-history-element
M-v minibuffer-scroll-down-command
RET exit-minibuffer
SPC..~ read-char-from-minibuffer-insert-char
TAB self-insert-command
Documentation
Keymap for the read-char-from-minibuffer function.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defvar read-char-from-minibuffer-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map minibuffer-local-map)
(define-key map [remap self-insert-command] #'read-char-from-minibuffer-insert-char)
(define-key map [remap exit-minibuffer] #'read-char-from-minibuffer-insert-other)
(define-key map [remap recenter-top-bottom] #'minibuffer-recenter-top-bottom)
(define-key map [remap scroll-up-command] #'minibuffer-scroll-up-command)
(define-key map [remap scroll-down-command] #'minibuffer-scroll-down-command)
(define-key map [remap scroll-other-window] #'minibuffer-scroll-other-window)
(define-key map [remap scroll-other-window-down] #'minibuffer-scroll-other-window-down)
map)
"Keymap for the `read-char-from-minibuffer' function.")