Variable: grep-menu-map
grep-menu-map is a variable defined in grep.el.gz.
Value
<nil-10> nil
<nil-12> nil
<nil> nil
Documentation
Menu for grep buffers.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/grep.el.gz
(easy-menu-define grep-menu-map grep-mode-map
"Menu for grep buffers."
'("Grep"
["Next Match" next-error
:help "Visit the next match and corresponding location"]
["Previous Match" previous-error
:help "Visit the previous match and corresponding location"]
["First Match" first-error
:help "Restart at the first match, visit corresponding location"]
"----"
["Repeat grep" recompile
:help "Run grep again"]
["Another grep..." grep
:help "Run grep, with user-specified args, and collect output in a buffer."]
["Grep via Find..." grep-find
:help "Run grep via find, with user-specified args"]
["Local grep..." lgrep
:help "User-friendly grep in a directory"]
["Recursive grep..." rgrep
:help "User-friendly recursive grep in directory tree"]
["Compile..." compile
:help "Compile the program including the current buffer. Default: run `make'"]
"----"
["Kill Grep" kill-compilation
:help "Kill the currently running grep process"]
"----"
["Toggle command abbreviation" grep-find-toggle-abbreviation
:help "Toggle showing verbose command options"]))