Variable: special-mode-map

special-mode-map is a variable defined in simple.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
>       end-of-buffer
?       describe-mode
DEL     scroll-down-command
S-SPC   scroll-down-command
SPC     scroll-up-command
SPC..~  undefined
g       revert-buffer
h       describe-mode
q       quit-window

Documentation

Keymap for special-mode.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
;; Special major modes to view specially formatted data rather than files.

(defvar-keymap special-mode-map
  :suppress t
  "q" #'quit-window
  "SPC" #'scroll-up-command
  "S-SPC" #'scroll-down-command
  "DEL" #'scroll-down-command
  "?" #'describe-mode
  "h" #'describe-mode
  ">" #'end-of-buffer
  "<" #'beginning-of-buffer
  "g" #'revert-buffer)