Variable: semantic-symref-filepattern-alist

semantic-symref-filepattern-alist is a variable defined in grep.el.gz.

Value

((Texinfo-mode "*.texinfo" "*.texi" "*.txi")
 (ConTeXt-mode "*.[tT]e[xX]")
 (AmSTeX-mode "*.[tT]e[xX]")
 (plain-TeX-mode "*.[tT]e[xX]" "*.ins")
 (docTeX-mode "*.dtx")
 (LaTeX-mode "*.[tT]e[xX]" "*.ltx" "*.sty" "*.cl[so]" "*.bbl" "*.drv" "*.hva")
 (c-mode "*.[ch]")
 (c-ts-mode "*.[ch]")
 (c++-mode "*.[chCH]" "*.[ch]pp" "*.cc" "*.hh")
 (c++-ts-mode "*.[chCH]" "*.[ch]pp" "*.cc" "*.hh")
 (html-mode "*.html" "*.shtml" "*.php")
 (mhtml-mode "*.html" "*.shtml" "*.php")
 (ruby-mode "*.r[bu]" "*.rake" "*.gemspec" "*.erb" "*.haml" "Rakefile" "Thorfile" "Capfile" "Guardfile" "Vagrantfile")
 (ruby-ts-mode "*.r[bu]" "*.rake" "*.gemspec" "*.erb" "*.haml" "Rakefile" "Thorfile" "Capfile" "Guardfile" "Vagrantfile")
 (python-mode "*.py" "*.pyi" "*.pyw")
 (python-ts-mode "*.py" "*.pyi" "*.pyw")
 (perl-mode "*.pl" "*.PL")
 (cperl-mode "*.pl" "*.PL")
 (lisp-interaction-mode "*.el" "*.ede" ".emacs" "_emacs"))

Documentation

List of major modes and file extension pattern.

See find -name man page for format.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/grep.el.gz
(defvar semantic-symref-filepattern-alist
  '((c-mode "*.[ch]")
    (c-ts-mode "*.[ch]")
    (c++-mode "*.[chCH]" "*.[ch]pp" "*.cc" "*.hh")
    (c++-ts-mode "*.[chCH]" "*.[ch]pp" "*.cc" "*.hh")
    (html-mode "*.html" "*.shtml" "*.php")
    (mhtml-mode "*.html" "*.shtml" "*.php") ; FIXME: remove
                                            ; duplication of
                                            ; HTML-related patterns.
                                            ; Maybe they belong in the
                                            ; major mode definition?
    (ruby-mode "*.r[bu]" "*.rake" "*.gemspec" "*.erb" "*.haml"
               "Rakefile" "Thorfile" "Capfile" "Guardfile" "Vagrantfile")
    (ruby-ts-mode "*.r[bu]" "*.rake" "*.gemspec" "*.erb" "*.haml"
                  "Rakefile" "Thorfile" "Capfile" "Guardfile" "Vagrantfile")
    (python-mode "*.py" "*.pyi" "*.pyw")
    (python-ts-mode "*.py" "*.pyi" "*.pyw")
    (perl-mode "*.pl" "*.PL")
    (cperl-mode "*.pl" "*.PL")
    (lisp-interaction-mode "*.el" "*.ede" ".emacs" "_emacs")
    )
  "List of major modes and file extension pattern.
See find -name man page for format.")