Variable: grep-files-aliases

grep-files-aliases is a customizable variable defined in grep.el.gz.

Value

(("all" . "* .*") ("el" . "*.el") ("ch" . "*.[ch]") ("c" . "*.c")
 ("cc" . "*.cc *.cxx *.cpp *.C *.CC *.c++")
 ("cchh" . "*.cc *.[ch]xx *.[ch]pp *.[CHh] *.CC *.HH *.[ch]++")
 ("hh" . "*.hxx *.hpp *.[Hh] *.HH *.h++") ("h" . "*.h")
 ("l" . "[Cc]hange[Ll]og*") ("am" . "Makefile.am GNUmakefile *.mk")
 ("m" . "[Mm]akefile*") ("tex" . "*.tex") ("texi" . "*.texi")
 ("asm" . "*.[sS]"))

Documentation

Alist of aliases for the FILES argument to lgrep and rgrep.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/grep.el.gz
(defcustom grep-files-aliases
  '(("all" .   "* .*")
    ("el" .    "*.el")
    ("ch" .    "*.[ch]")
    ("c" .     "*.c")
    ("cc" .    "*.cc *.cxx *.cpp *.C *.CC *.c++")
    ("cchh" .  "*.cc *.[ch]xx *.[ch]pp *.[CHh] *.CC *.HH *.[ch]++")
    ("hh" .    "*.hxx *.hpp *.[Hh] *.HH *.h++")
    ("h" .     "*.h")
    ("l" .     "[Cc]hange[Ll]og*")
    ("am" .    "Makefile.am GNUmakefile *.mk")
    ("m" .     "[Mm]akefile*")
    ("tex" .   "*.tex")
    ("texi" .  "*.texi")
    ("asm" .   "*.[sS]"))
  "Alist of aliases for the FILES argument to `lgrep' and `rgrep'."
  :type 'alist)