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
>               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.

Aliases

command-history-map (obsolete since 24.1)

Source Code

;; Defined in /usr/src/emacs/lisp/chistory.el.gz
(defvar command-history-mode-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map (make-composed-keymap lisp-mode-shared-map
                                                 special-mode-map))
    (define-key map "x" #'command-history-repeat)
    (define-key map "\n" #'next-line)
    (define-key map "\r" #'next-line)
    (define-key map "\177" #'previous-line)
    map)
  "Keymap for `command-history-mode'.")