Variable: bib-etags-command

bib-etags-command is a customizable variable defined in bib-cite.el.

Value

"etags -r '/.*\\\\\\(eq\\|page\\|[fvF]\\)ref.*/' -o "

Documentation

Variable for the etags command and its output option.

In unix, this is usually "etags -r '/.*\\\\\\(eq\\|page\\|[fvF]\\)ref.*/' -o "
(we use the -r option to tell etags to list AMS-LaTeX's \eqref command.)
In DOS and OS/2, this *may* be different, e.g. using slashes like "etags /o=" If so, set it this variable.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
(defcustom bib-etags-command "etags -r '/.*\\\\\\(eq\\|page\\|[fvF]\\)ref.*/' -o "
  "Variable for the etags command and its output option.
In unix, this is usually \"etags -r '/.*\\\\\\(eq\\|page\\|[fvF]\\)ref.*/' -o \"
\(we use the -r option to tell etags to list AMS-LaTeX's \\eqref command.)
In DOS and OS/2, this *may* be different, e.g. using slashes like \"etags /o=\"
If so, set it this variable."
  :type 'string)