Variable: TeX-search-files-type-alist
TeX-search-files-type-alist is a variable defined in tex.el.
Value
((texinputs "${TEXINPUTS}"
("tex/")
TeX-file-extensions)
(docs "${TEXDOCS}"
("doc/")
TeX-doc-extensions)
(bibinputs "${BIBINPUTS}"
("bibtex/bib/")
BibTeX-file-extensions)
(bstinputs "${BSTINPUTS}"
("bibtex/bst/")
BibTeX-style-extensions))
Documentation
Alist of filetypes with locations and file extensions.
Each element of the alist consists of a symbol expressing the filetype, a variable which can be expanded on kpathsea-based systems into the directories where files of the given type reside, a list of absolute directories, relative directories below the root of a TDS-compliant TeX tree or a list of variables with either type of directories as an alternative for non-kpathsea-based systems and a list of extensions to be matched upon a file search. Note that the directories have to end with a directory separator.
Each AUCTeX mode should set the variable buffer-locally with a
more specific value. See LaTeX-search-files-type-alist for an
example.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;; The variables `TeX-macro-private' and `TeX-macro-global' are not
;; used for specifying the directories because the number of
;; directories to be searched should be limited as much as possible
;; and the TeX-macro-* variables are just too broad for this.
(defvar TeX-search-files-type-alist
'((texinputs "${TEXINPUTS}" ("tex/") TeX-file-extensions)
(docs "${TEXDOCS}" ("doc/") TeX-doc-extensions)
(bibinputs "${BIBINPUTS}" ("bibtex/bib/") BibTeX-file-extensions)
(bstinputs "${BSTINPUTS}" ("bibtex/bst/") BibTeX-style-extensions))
"Alist of filetypes with locations and file extensions.
Each element of the alist consists of a symbol expressing the
filetype, a variable which can be expanded on kpathsea-based
systems into the directories where files of the given type
reside, a list of absolute directories, relative directories
below the root of a TDS-compliant TeX tree or a list of variables
with either type of directories as an alternative for
non-kpathsea-based systems and a list of extensions to be matched
upon a file search. Note that the directories have to end with a
directory separator.
Each AUCTeX mode should set the variable buffer-locally with a
more specific value. See `LaTeX-search-files-type-alist' for an
example.")