Variable: grep-mode-map

grep-mode-map is a variable defined in grep.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
<backtab>      compilation-previous-error
<follow-link>  mouse-face
<mouse-2>      compile-goto-error
>              end-of-buffer
?              describe-mode
C-c C-c        compile-goto-error
C-c C-f        next-error-follow-minor-mode(var)/next-error-follow-minor-mode(fun)
C-c C-k        kill-compilation
C-o            compilation-display-error
DEL            scroll-down-command
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
RET            compile-goto-error
S-SPC          scroll-down-command
S-SPC          scroll-down-command
SPC            scroll-up-command
SPC            scroll-up-command
SPC..~         undefined
TAB            compilation-next-error
e              grep-change-to-grep-edit-mode
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
{              compilation-previous-file
}              compilation-next-file

Documentation

Keymap for grep buffers.

This keymap inherits from compilation-minor-mode-map.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/grep.el.gz
(defvar-keymap grep-mode-map
  :doc "Keymap for grep buffers.
This keymap inherits from `compilation-minor-mode-map'."
  :parent compilation-minor-mode-map
  "SPC"       #'scroll-up-command
  "S-SPC"     #'scroll-down-command
  "DEL"       #'scroll-down-command
  "C-c C-f"   #'next-error-follow-minor-mode

  "RET"       #'compile-goto-error
  "{"         #'compilation-previous-file
  "}"         #'compilation-next-file
  "TAB"       #'compilation-next-error
  "<backtab>" #'compilation-previous-error

  "e"         #'grep-change-to-grep-edit-mode)