Variable: compilation-shell-minor-mode-map

compilation-shell-minor-mode-map is a variable defined in compile.el.gz.

Value

C-M-n  compilation-next-error
C-M-p  compilation-previous-error
M-RET  compile-goto-error
M-{    compilation-previous-file
M-}    compilation-next-file

Documentation

Keymap for compilation-shell-minor-mode(var)/compilation-shell-minor-mode(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defvar compilation-shell-minor-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "\M-\C-m" 'compile-goto-error)
    (define-key map "\M-\C-n" 'compilation-next-error)
    (define-key map "\M-\C-p" 'compilation-previous-error)
    (define-key map "\M-{" 'compilation-previous-file)
    (define-key map "\M-}" 'compilation-next-file)
    ;; Set up the menu-bar
    (define-key map [menu-bar compilation]
      (cons "Errors" compilation-menu-map))
    map)
  "Keymap for `compilation-shell-minor-mode'.")