Variable: command-history-mode-map

command-history-mode-map is a variable defined in chistory.el.gz.

Value

-               negative-argument
0               digit-argument
1               digit-argument
2               digit-argument
3               digit-argument
4               digit-argument
5               digit-argument
6               digit-argument
7               digit-argument
8               digit-argument
9               digit-argument
<               beginning-of-buffer
<keymap> C-M-q  indent-sexp
<keymap> C-M-q  prog-indent-sexp
<keymap> M-q    prog-fill-reindent-defun
>               end-of-buffer
?               describe-mode
C-j             next-line
DEL             previous-line
DEL             scroll-down-command
RET             next-line
S-SPC           scroll-down-command
SPC             scroll-up-command
SPC..~          undefined
g               revert-buffer
h               describe-mode
q               quit-window
x               command-history-repeat

Documentation

Keymap for command-history-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/chistory.el.gz
(defvar-keymap command-history-mode-map
  :doc "Keymap for `command-history-mode'."
  :parent (make-composed-keymap lisp-mode-shared-map
                                special-mode-map)
  "x"   #'command-history-repeat
  "C-j" #'next-line
  "RET" #'next-line
  "DEL" #'previous-line)