Variable: apropos-mode-map
apropos-mode-map is a variable defined in apropos.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
<backtab> backward-button
> end-of-buffer
? describe-mode
C-M-i backward-button
DEL scroll-down-command
RET apropos-follow
S-SPC scroll-down-command
SPC scroll-up-command
SPC..~ undefined
TAB forward-button
g revert-buffer
h describe-mode
n apropos-next-symbol
p apropos-previous-symbol
q quit-window
Documentation
Keymap used in Apropos mode.
Source Code
;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defvar apropos-mode-map
(let ((map (copy-keymap button-buffer-map)))
(set-keymap-parent map special-mode-map)
;; Use `apropos-follow' instead of just using the button
;; definition of RET, so that users can use it anywhere in an
;; apropos item, not just on top of a button.
(define-key map "\C-m" #'apropos-follow)
;; Movement keys
(define-key map "n" #'apropos-next-symbol)
(define-key map "p" #'apropos-previous-symbol)
map)
"Keymap used in Apropos mode.")