Variable: compilation-minor-mode-map
compilation-minor-mode-map is a variable defined in compile.el.gz.
Value
Large 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
<follow-link> mouse-face
<mouse-2> compile-goto-error
> end-of-buffer
? describe-mode
C-c C-c compile-goto-error
C-c C-k kill-compilation
C-o compilation-display-error
DEL scroll-down-command
M-n compilation-next-error
M-p compilation-previous-error
M-{ compilation-previous-file
M-} compilation-next-file
RET compile-goto-error
S-SPC scroll-down-command
SPC scroll-up-command
SPC..~ undefined
g recompile
g revert-buffer
h describe-mode
l recenter-current-error
n next-error-no-select
p previous-error-no-select
q quit-window
Documentation
Keymap for compilation-minor-mode(var)/compilation-minor-mode(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defvar compilation-minor-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map special-mode-map)
(define-key map [mouse-2] 'compile-goto-error)
(define-key map [follow-link] 'mouse-face)
(define-key map "\C-c\C-c" 'compile-goto-error)
(define-key map "\C-m" 'compile-goto-error)
(define-key map "\C-o" 'compilation-display-error)
(define-key map "\C-c\C-k" 'kill-compilation)
(define-key map "\M-n" 'compilation-next-error)
(define-key map "\M-p" 'compilation-previous-error)
(define-key map "\M-{" 'compilation-previous-file)
(define-key map "\M-}" 'compilation-next-file)
(define-key map "n" 'next-error-no-select)
(define-key map "p" 'previous-error-no-select)
(define-key map "l" 'recenter-current-error)
(define-key map "g" 'recompile) ; revert
;; Set up the menu-bar
(define-key map [menu-bar compilation]
(cons "Errors" compilation-menu-map))
map)
"Keymap for `compilation-minor-mode'.")