freebsd-dev/usr.bin/ctags/ctags.1

252 lines
6.4 KiB
Groff
Raw Normal View History

1994-05-27 12:33:43 +00:00
.\" Copyright (c) 1987, 1990, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
1994-05-27 12:33:43 +00:00
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)ctags.1 8.1 (Berkeley) 6/6/93
1999-08-28 01:08:13 +00:00
.\" $FreeBSD$
1994-05-27 12:33:43 +00:00
.\"
.Dd June 6, 1993
.Dt CTAGS 1
.Os
1994-05-27 12:33:43 +00:00
.Sh NAME
.Nm ctags
2001-12-14 09:48:03 +00:00
.Nd create a
.Pa tags
file
1994-05-27 12:33:43 +00:00
.Sh SYNOPSIS
.Nm
.Op Fl BFTaduwvx
1994-05-27 12:33:43 +00:00
.Op Fl f Ar tagsfile
.Ar
1994-05-27 12:33:43 +00:00
.Sh DESCRIPTION
2001-12-14 09:48:03 +00:00
The
.Nm
utility makes a
.Pa tags
file for
1994-05-27 12:33:43 +00:00
.Xr ex 1
from the specified C,
Pascal, Fortran,
2001-12-14 09:48:03 +00:00
.Xr yacc 1 ,
.Xr lex 1 ,
and Lisp sources.
1994-05-27 12:33:43 +00:00
A tags file gives the locations of specified objects in a group of files.
Each line of the tags file contains the object name, the file in which it
is defined, and a search pattern for the object definition, separated by
white-space.
Using the
2001-12-14 09:48:03 +00:00
.Pa tags
1994-05-27 12:33:43 +00:00
file,
.Xr ex 1
can quickly locate these object definitions.
Depending upon the options provided to
.Nm ,
1994-05-27 12:33:43 +00:00
objects will consist of subroutines, typedefs, defines, structs,
enums and unions.
.Pp
The following options are available:
.Bl -tag -width indent
1994-05-27 12:33:43 +00:00
.It Fl B
Use backward searching patterns
1994-05-27 12:33:43 +00:00
.Pq Li ?...? .
.It Fl F
Use forward searching patterns
1994-05-27 12:33:43 +00:00
.Pq Li /.../
(the default).
.It Fl T
Do not create tags for typedefs, structs, unions, and enums.
1994-05-27 12:33:43 +00:00
.It Fl a
Append to
2001-12-14 09:48:03 +00:00
.Pa tags
1994-05-27 12:33:43 +00:00
file.
.It Fl d
Create tags for
1994-05-27 12:33:43 +00:00
.Li #defines
2001-12-14 09:48:03 +00:00
that do not take arguments;
1994-05-27 12:33:43 +00:00
.Li #defines
that take arguments are tagged automatically.
.It Fl f
Place the tag descriptions in a file called
1994-05-27 12:33:43 +00:00
.Ar tagsfile .
1997-06-30 06:45:53 +00:00
The default behaviour is to place them in a file called
2001-12-14 09:48:03 +00:00
.Pa tags .
1994-05-27 12:33:43 +00:00
.It Fl u
Update the specified files in the
2001-12-14 09:48:03 +00:00
.Pa tags
1994-05-27 12:33:43 +00:00
file, that is, all
references to them are deleted, and the new values are appended to the
2001-12-14 09:48:03 +00:00
file.
(Beware: this option is implemented in a way which is rather
1994-05-27 12:33:43 +00:00
slow; it is usually faster to simply rebuild the
2001-12-14 09:48:03 +00:00
.Pa tags
1994-05-27 12:33:43 +00:00
file.)
.It Fl v
An index of the form expected by
.Xr vgrind 1
2001-12-14 09:48:03 +00:00
is produced on the standard output.
This listing
1994-05-27 12:33:43 +00:00
contains the object name, file name, and page number (assuming 64
2001-12-14 09:48:03 +00:00
line pages).
Since the output will be sorted into lexicographic order,
1994-05-27 12:33:43 +00:00
it may be desired to run the output through
.Xr sort 1 .
Sample use:
.Bd -literal -offset indent
2001-12-14 09:48:03 +00:00
ctags -v files | sort -f > index
vgrind -x index
1994-05-27 12:33:43 +00:00
.Ed
.It Fl w
Suppress warning diagnostics.
1994-05-27 12:33:43 +00:00
.It Fl x
.Nm
1994-05-27 12:33:43 +00:00
produces a list of object
names, the line number and file name on which each is defined, as well
2001-12-14 09:48:03 +00:00
as the text of that line and prints this on the standard output.
This
1994-05-27 12:33:43 +00:00
is a simple index which can be printed out as an off-line readable
function index.
.El
.Pp
Files whose names end in
2001-12-14 09:48:03 +00:00
.Pa .c
1994-05-27 12:33:43 +00:00
or
2001-12-14 09:48:03 +00:00
.Pa .h
1994-05-27 12:33:43 +00:00
are assumed to be C
source files and are searched for C style routine and macro definitions.
Files whose names end in
2001-12-14 09:48:03 +00:00
.Pa .y
1994-05-27 12:33:43 +00:00
are assumed to be
2001-12-14 09:48:03 +00:00
.Xr yacc 1
1994-05-27 12:33:43 +00:00
source files.
Files whose names end in
2001-12-14 09:48:03 +00:00
.Pa .l
are assumed to be Lisp files if their
2001-12-14 09:48:03 +00:00
first non-blank character is
.Ql \&; ,
.Ql \&( ,
or
.Ql \&[ ,
1994-05-27 12:33:43 +00:00
otherwise, they are
2001-12-14 09:48:03 +00:00
treated as
.Xr lex 1
files.
Other files are first examined to see if they
1994-05-27 12:33:43 +00:00
contain any Pascal or Fortran routine definitions, and, if not, are
searched for C style definitions.
.Pp
The tag
2001-12-14 09:48:03 +00:00
.Dq Li main
is treated specially in C programs.
The tag formed
1994-05-27 12:33:43 +00:00
is created by prepending
2001-12-14 09:48:03 +00:00
.Ql M
1994-05-27 12:33:43 +00:00
to the name of the file, with the
trailing
2001-12-14 09:48:03 +00:00
.Pa .c
and any leading pathname components removed.
This makes use of
.Nm
1994-05-27 12:33:43 +00:00
practical in directories with more than one
program.
.Pp
2003-06-08 13:43:56 +00:00
The
2001-12-14 09:48:03 +00:00
.Xr yacc 1
and
.Xr lex 1
files each have a special tag.
.Dq Li yyparse
1994-05-27 12:33:43 +00:00
is the start
2001-12-14 09:48:03 +00:00
of the second section of the
.Xr yacc 1
file, and
.Dq Li yylex
1994-05-27 12:33:43 +00:00
is the start of
2001-12-14 09:48:03 +00:00
the second section of the
.Xr lex 1
file.
1994-05-27 12:33:43 +00:00
.Sh FILES
2001-12-14 09:48:03 +00:00
.Bl -tag -width ".Pa tags" -compact
1994-05-27 12:33:43 +00:00
.It Pa tags
default output tags file
.El
.Sh EXIT STATUS
2001-12-14 09:48:03 +00:00
The
.Nm
utility exits with a value of 1 if an error occurred, 0 otherwise.
1994-05-27 12:33:43 +00:00
Duplicate objects are not considered errors.
.Sh COMPATIBILITY
The
.Fl t
option is a no-op for compatibility with previous versions of
.Nm
that did not create tags for typedefs, enums, structs and unions
by default.
2002-05-30 12:02:55 +00:00
.Sh SEE ALSO
.Xr ex 1 ,
.Xr vi 1
.Sh STANDARDS
The
.Nm
utility conforms to
.St -p1003.1-2001 .
2002-05-30 12:02:55 +00:00
.Sh HISTORY
The
.Nm
utility appeared in
.Bx 3.0 .
1994-05-27 12:33:43 +00:00
.Sh BUGS
2001-12-14 09:48:03 +00:00
Recognition of functions, subroutines and procedures
for Fortran and Pascal is done in a very simpleminded way.
No attempt
1994-05-27 12:33:43 +00:00
is made to deal with block structure; if you have two Pascal procedures
in different blocks with the same name you lose.
2002-04-19 23:44:58 +00:00
The
2001-12-14 09:48:03 +00:00
.Nm
2002-04-19 23:44:58 +00:00
utility does not
1994-05-27 12:33:43 +00:00
understand about Pascal types.
.Pp
The method of deciding whether to look for C, Pascal or
Fortran
1994-05-27 12:33:43 +00:00
functions is a hack.
.Pp
2002-04-19 23:44:58 +00:00
The
2001-12-14 09:48:03 +00:00
.Nm
2002-04-19 23:44:58 +00:00
utility relies on the input being well formed, and any syntactical
2001-12-14 09:48:03 +00:00
errors will completely confuse it.
It also finds some legal syntax
confusing; for example, since it does not understand
1994-05-27 12:33:43 +00:00
.Li #ifdef Ns 's
2001-12-14 09:48:03 +00:00
(incidentally, that is a feature, not a bug), any code with unbalanced
1994-05-27 12:33:43 +00:00
braces inside
.Li #ifdef Ns 's
will cause it to become somewhat disoriented.
In a similar fashion, multiple line changes within a definition will
cause it to enter the last line of the object, rather than the first, as
2001-12-14 09:48:03 +00:00
the searching pattern.
The last line of multiple line
1994-05-27 12:33:43 +00:00
.Li typedef Ns 's
will similarly be noted.