etags(1) | GNU Tools | etags(1) |
etags, ctags - generate tag file for Emacs, vi
etags [-aCDGImRVh] [-i file] [-l language]
[-o tagfile] [-r regexp]
[--append] [--no-defines] [--no-globals] [--include=file]
[--ignore-indentation] [--language=language] [--members]
[--output=tagfile] [--regex=regexp] [--no-regex]
[--ignore-case-regex=regexp] [--help] [--version]
file ...
ctags [-aCdgImRVh] [-BtTuvwx] [-l language]
[-o tagfile] [-r regexp]
[--append] [--backward-search] [--cxref] [--defines]
[--forward-search] [--globals] [--ignore-indentation]
[--language=language] [--members] [--output=tagfile]
[--regex=regexp] [--ignore-case-regex=regexp]
[--typedefs] [--typedefs-and-c++] [--update] [--no-warn]
[--help] [--version] file ...
The `etags' program is used to create a tag table file, in a format understood by emacs(1); the `ctags' program is used to create a similar table in a format understood by vi(1). Both forms of the program understand the syntax of C, Objective C, C++, Java, Fortran, Ada, Cobol, Erlang, LaTeX, Emacs Lisp/Common Lisp, makefiles, Pascal, Perl, Postscript, Python, Prolog, Scheme and most assembler-like syntaxes. Both forms read the files specified on the command line, and write a tag table (defaults: `TAGS' for etags, `tags' for ctags) in the current working directory. Files specified with relative file names will be recorded in the tag table with file names relative to the directory where the tag table resides. Files specified with absolute file names will be recorded with absolute file names. The programs recognize the language used in an input file based on its file name and contents. The --language switch can be used to force parsing of the file names following the switch according to the given language, overriding guesses based on filename extensions.
Some options make sense only for the vi style tag files produced by ctags; etags does not recognize them. The programs accept unambiguous abbreviations for long option names.
where tagregexp is used to match the lines that must be
tagged. It should not match useless characters. If the match is such
that more characters than needed are unavoidably matched by
tagregexp, it may be useful to add a nameregexp, to narrow
down the tag scope. ctags ignores regexps without a
nameregexp. The syntax of regexps is the same as in emacs,
augmented with intervals of the form \{m,n\}, as in ed or grep.
Here are some examples. All the regexps are quoted to protect them from
shell interpretation.
Tag the DEFVAR macros in the emacs source files:
--regex='/[ \t]*DEFVAR_[A-Z_ \t(]+"\([^"]+\)"'
Tag VHDL files (this example is a single long line, broken
here for formatting reasons):
--language=none --regex='/[ \t]*\(ARCHITECTURE\|\
CONFIGURATION\) +[^ ]* +OF/' --regex='/[ \t]*\
\(ATTRIBUTE\|ENTITY\|FUNCTION\|PACKAGE\( BODY\)?\
\|PROCEDURE\|PROCESS\|TYPE\)[ \t]+\([^ \t(]+\)/\3/'
Tag TCL files (this last example shows the usage of a
tagregexp):
--lang=none --regex='/proc[ \t]+\([^ \t]+\)/\1/'
A regexp can be preceded by {lang}, thus restriciting it to
match lines of files of the specified language. Use etags --help
to obtain a list of the recognised languages. This feature is
particularly useful inside regex files. A regex file contains one
regex per line. Empty lines, and those lines beginning with space or tab
are ignored. Lines beginning with @ are references to regex files whose
name follows the @ sign. Other lines are considered regular expressions
like those following --regex.
For example, the command
etags --regex=@regex.file *.c
reads the regexes contained in the file regex.file.
`emacs' entry in info; GNU Emacs Manual,
Richard Stallman.
cxref(1), emacs(1), vgrind(1),
vi(1).
Copyright (c) 1999 Free Software Foundation, Inc.
Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translations approved by the Free Software Foundation instead of in the original English.
14gen2001 | GNU Tools |