Remove string.h hack.
[bpt/emacs.git] / etc / etags.1
CommitLineData
a933dad1
DL
1.\" Copyright (c) 1992 Free Software Foundation
2.\" See section COPYING for conditions for redistribution
8dc78b52 3.TH etags 1 "02nov1999" "GNU Tools" "GNU Tools"
a933dad1
DL
4.de BP
5.sp
6.ti -.2i
7\(**
8..
9
10.SH NAME
11etags, ctags \- generate tag file for Emacs, vi
12.SH SYNOPSIS
13.hy 0
14.na
8dc78b52
FP
15.B etags [\|\-aCDGImRVh\|] [\|\-i \fIfile\fP\|] [\|\-l \fIlanguage\fP\|]
16.if n .br
17.B [\|\-o \fItagfile\fP\|] [\|\-r \fIregexp\fP\|]
18.br
19[\|\-\-append\|] [\|\-\-c++\|] [\|\-\-no\-defines\|]
20[\|\-\-no\-globals\|] [\|\-\-include=\fIfile\fP\|]
21[\|\-\-ignore\-indentation\|] [\|\-\-language=\fIlanguage\fP\|]
22[\|\-\-members\|] [\|\-\-output=\fItagfile\fP\|]
23[\|\-\-regex=\fIregexp\fP\|] [\|\-\-no\-regex\|]
caac7f2c 24[\|\-\-ignore\-case\-regex=\fIregexp\fP\|]
8dc78b52
FP
25[\|\-\-help\|] [\|\-\-version\|]
26\fIfile\fP .\|.\|.
a933dad1 27
8dc78b52
FP
28.B ctags [\|\-aCdgImRVh\|] [\|\-BtTuvwx\|] [\|\-l \fIlanguage\fP\|]
29.if n .br
30.B [\|\-o \fItagfile\fP\|] [\|\-r \fIregexp\fP\|]
31.br
32[\|\-\-append\|] [\|\-\-backward\-search\|] [\|\-\-c++\|]
33[\|\-\-cxref\|] [\|\-\-defines\|] [\|\-\-forward\-search\|]
34[\|\-\-globals\|] [\|\-\-ignore\-indentation\|]
35[\|\-\-language=\fIlanguage\fP\|] [\|\-\-members\|]
36[\|\-\-output=\fItagfile\fP\|] [\|\-\-regex=\fIregexp\fP\|]
caac7f2c 37[\|\-\-ignore\-case\-regex=\fIregexp\fP\|]
8dc78b52
FP
38[\|\-\-typedefs\|] [\|\-\-typedefs\-and\-c++\|]
39[\|\-\-update\|] [\|\-\-no\-warn\|]
a933dad1 40[\|\-\-help\|] [\|\-\-version\|]
8dc78b52 41\fIfile\fP .\|.\|.
a933dad1
DL
42.ad b
43.hy 1
44.SH DESCRIPTION
45The `\|\fBetags\fP\|' program is used to create a tag table file, in a format
46understood by
47.BR emacs ( 1 )\c
48\&; the `\|\fBctags\fP\|' program is used to create a similar table in a
49format understood by
50.BR vi ( 1 )\c
51\&. Both forms of the program understand
8dc78b52
FP
52the syntax of C, Objective C, C++, Java, Fortran, Pascal, Cobol, Ada, Perl,
53LaTeX, Scheme, Emacs Lisp/Common Lisp, Postscript, Erlang, Python, Prolog and
54most assembler\-like syntaxes.
a933dad1
DL
55Both forms read the files specified on the command line, and write a tag
56table (defaults: `\|TAGS\|' for \fBetags\fP, `\|tags\|' for
57\fBctags\fP) in the current working directory.
58Files specified with relative file names will be recorded in the tag
59table with file names relative to the directory where the tag table
60resides. Files specified with absolute file names will be recorded
61with absolute file names.
62The programs recognize the language used in an input file based on its
63file name and contents. The --language switch can be used to force
64parsing of the file names following the switch according to the given
65language, overriding guesses based on filename extensions.
66.SH OPTIONS
67Some options make sense only for the \fBvi\fP style tag files produced
68by ctags;
69\fBetags\fP does not recognize them.
70The programs accept unambiguous abbreviations for long option names.
71.TP
72.B \-a, \-\-append
73Append to existing tag file. (For vi-format tag files, see also
74\fB\-\-update\fP.)
75.TP
76.B \-B, \-\-backward\-search
77Tag files written in the format expected by \fBvi\fP contain regular
78expression search instructions; the \fB\-B\fP option writes them using
79the delimiter `\|\fB?\fP\|', to search \fIbackwards\fP through files.
80The default is to use the delimiter `\|\fB/\fP\|', to search \fIforwards\fP
81through files.
82Only \fBctags\fP accepts this option.
83.TP
84.B \-C, \-\-c++
85Treat files with `\|.c\|' and `\|.h\|' extensions as C++ code, not C
86code. Files with `\|.C\|', `\|.H\|', `\|.cxx\|', `\|.hxx\|', or
87`\|.cc\|' extensions are always assumed to be C++ code.
88.TP
8dc78b52
FP
89.B \-\-declarations
90In C and derived languages, create tags for function declarations,
91and create tags for extern variables unless \-\-no\-globals is used.
92.TP
a933dad1 93.B \-d, \-\-defines
8dc78b52
FP
94Create tag entries for C preprocessor constant definitions
95and enum constants, too. This is the
96default behavior for \fBetags\fP.
a933dad1
DL
97.TP
98.B \-D, \-\-no\-defines
8dc78b52
FP
99Do not create tag entries for C preprocessor constant definitions
100and enum constants.
a933dad1 101This may make the tags file much smaller if many header files are tagged.
8dc78b52
FP
102This is the default behavior for \fBctags\fP.
103.TP
104.B \-g, \-\-globals
105Create tag entries for global variables in C, C++, Objective C, Java,
106and Perl.
107This is the default behavior for \fBetags\fP.
108.TP
109.B \-G, \-\-no\-globals
110Do not tag global variables. Typically this reduces the file size by
111one fourth. This is the default behavior for \fBctags\fP.
112.TP
113\fB\-i\fP \fIfile\fP, \fB\-\-include=\fIfile\fP
114Include a note in the tag file indicating that, when searching for a
115tag, one should also consult the tags file \fIfile\fP after checking the
116current file. This options is only accepted by \fBetags\fP.
117.TP
118.B \-I, \-\-ignore\-indentation
119Don't rely on indentation as much as we normally do. Currently, this
120means not to assume that a closing brace in the first column is the
121final brace of a function or structure definition in C and C++.
a933dad1
DL
122.TP
123\fB\-l\fP \fIlanguage\fP, \fB\-\-language=\fIlanguage\fP
124Parse the following files according to the given language. More than
125one such options may be intermixed with filenames. Use \fB\-\-help\fP
126to get a list of the available languages and their default filename
127extensions. The `auto' language can be used to restore automatic
128detection of language based on filename extension. The `none'
129language may be used to disable language parsing altogether; only
130regexp matching is done in this case (see the \fB\-\-regex\fP option).
131.TP
8dc78b52
FP
132.B \-m, \-\-members
133Create tag entries for variables that are members of structure-like
134constructs in C++, Objective C, Java.
135.TP
136.B \-M, \-\-no\-members
137Do not tag member variables. This is the default behavior.
138.TP
139.B \-\-packages\-only
140Only tag packages in Ada files.
141.TP
a933dad1
DL
142\fB\-o\fP \fItagfile\fP, \fB\-\-output=\fItagfile\fP
143Explicit name of file for tag table; overrides default `\|TAGS\|' or
144`\|tags\|'. (But ignored with \fB\-v\fP or \fB\-x\fP.)
145.TP
146\fB\-r\fP \fIregexp\fP, \fB\-\-regex=\fIregexp\fP
caac7f2c
FP
147\fB\-\-ignore\-case\-regex=\fIregexp\fP\
148Make tags based on regexp matching for each line of the files following
149this option, in addition to the tags made with the standard parsing based
150on language. When using \-\-regex, case is significant, while it is not
151with \-\-ignore\-case\-regex. May be freely intermixed with filenames and
152the \fB\-R\fP option. The regexps are cumulative, i.e. each option will
153add to the previous ones. The regexps are of the form:
a933dad1 154.br
caac7f2c 155 \fB/\fP\fItagregexp\fP[\fB/\fP\fInameregexp\fP]\fB/\fP
a933dad1
DL
156.br
157
158where \fItagregexp\fP is used to match the lines that must be tagged.
159It should not match useless characters. If the match is
160such that more characters than needed are unavoidably matched by
161\fItagregexp\fP, it may be useful to add a \fInameregexp\fP, to
162narrow down the tag scope. \fBctags\fP ignores regexps without a
8dc78b52
FP
163\fInameregexp\fP. The syntax of regexps is the same as in emacs,
164augmented with intervals of the form \\{m,n\\}, as in ed or grep.
a933dad1
DL
165.br
166Here are some examples. All the regexps are quoted to protect them
167from shell interpretation.
168.br
169
170Tag the DEFVAR macros in the emacs source files:
171.br
172\fI\-\-regex\='/[ \\t]*DEFVAR_[A-Z_ \\t(]+"\\([^"]+\\)"\/'\fP
173.br
174
175Tag VHDL files (this example is a single long line, broken here for
176formatting reasons):
177.br
178\fI\-\-language\=none\ \-\-regex='/[\ \\t]*\\(ARCHITECTURE\\|\\
179CONFIGURATION\\)\ +[^\ ]*\ +OF/'\ \-\-regex\='/[\ \\t]*\\
180\\(ATTRIBUTE\\|ENTITY\\|FUNCTION\\|PACKAGE\\(\ BODY\\)?\\
181\\|PROCEDURE\\|PROCESS\\|TYPE\\)[\ \\t]+\\([^\ \\t(]+\\)/\\3/'\fP
182.br
183
a933dad1
DL
184Tag TCL files (this last example shows the usage of a \fItagregexp\fP):
185.br
186\fI\-\-lang\=none \-\-regex\='/proc[\ \\t]+\\([^\ \\t]+\\)/\\1/'\fP
187
caac7f2c
FP
188.br
189A regexp can be preceded by {lang}, thus restriciting it to match lines of
190files of the specified language. Use \fBetags --help\bP to obtain a list
191of the recognised languages. This feature is particularly useful inside
192\fBregex files\fB. A regex file contains one regex per line. Empty lines,
193and those lines beginning with space or tab are ignored. Lines beginning
194with @ are references to regex files whose name follows the @ sign. Other
195lines are considered regular expressions like those following \-\-regex.
196.br
197For example, the command
198.br
199etags \-\-regex=@regex.file *.c
200.br
201reads the regexes contained in the file regex.file.
a933dad1
DL
202.TP
203.B \-R, \-\-no\-regex
204Don't do any more regexp matching on the following files. May be
205freely intermixed with filenames and the \fB\-\-regex\fP option.
206.TP
a933dad1
DL
207.B \-t, \-\-typedefs
208Record typedefs in C code as tags. Since this is the default behaviour
209of \fBetags\fP, only \fBctags\fP accepts this option.
210.TP
211.B \-T, \-\-typedefs\-and\-c++
212Generate tag entries for typedefs, struct, enum, and union tags, and
213C++ member functions. Since this is the default behaviour
214of \fBetags\fP, only \fBctags\fP accepts this option.
215.TP
216.B \-u, \-\-update
217Update tag entries for \fIfiles\fP specified on command line, leaving
218tag entries for other files in place. Currently, this is implemented
219by deleting the existing entries for the given files and then
220rewriting the new entries at the end of the tags file. It is often
221faster to simply rebuild the entire tag file than to use this.
222Only \fBctags\fP accepts this option.
223.TP
224.B \-v, \-\-vgrind
225Instead of generating a tag file, write index (in \fBvgrind\fP format)
226to standard output. Only \fBctags\fP accepts this option.
227.TP
228.B \-w, \-\-no\-warn
229Suppress warning messages about duplicate entries. The \fBetags\fP
230program does not check for duplicate entries, so this option is not
231allowed with it.
232.TP
233.B \-x, \-\-cxref
234Instead of generating a tag file, write a cross reference (in
235\fBcxref\fP format) to standard output. Only \fBctags\fP accepts this option.
236.TP
8dc78b52 237.B \-h, \-H, \-\-help
a933dad1
DL
238Print usage information.
239.TP
240.B \-V, \-\-version
241Print the current version of the program (same as the version of the
242emacs \fBetags\fP is shipped with).
243
244.SH "SEE ALSO"
245`\|\fBemacs\fP\|' entry in \fBinfo\fP; \fIGNU Emacs Manual\fP, Richard
246Stallman.
247.br
248.BR cxref ( 1 ),
249.BR emacs ( 1 ),
250.BR vgrind ( 1 ),
251.BR vi ( 1 ).
252
253.SH COPYING
8dc78b52 254Copyright (c) 1999 Free Software Foundation, Inc.
a933dad1
DL
255.PP
256Permission is granted to make and distribute verbatim copies of
257this manual provided the copyright notice and this permission notice
258are preserved on all copies.
259.PP
260Permission is granted to copy and distribute modified versions of this
261manual under the conditions for verbatim copying, provided that the
262entire resulting derived work is distributed under the terms of a
263permission notice identical to this one.
264.PP
265Permission is granted to copy and distribute translations of this
266manual into another language, under the above conditions for modified
267versions, except that this permission notice may be included in
268translations approved by the Free Software Foundation instead of in
269the original English.