Ctags
Wikipedia, the free encyclopedia - Cite This SourceCtags is a program that generates an index (or tag) file of names found in source and header files of various programming languages. Depending on the language, functions, variables, class members, macros and so on may be indexed. These tags allow definitions to be quickly and easily located by a text editor or other utility. Alternatively, there is also an output mode that generates a cross reference file, listing information about various names found in a set of language files in human-readable form.
The original Ctags was introduced in BSD Unix and was written by Ken Arnold, with Fortran support by Jim Kleckner and Pascal support by Bill Joy.
Editors that support ctags
Tag index files are supported by many source code editors, including:
- AcroEdit
- BBEdit 8
- Emacs and XEmacs
- Gedit (via gedit-symbol-browser-plugin found on
) - JED
- jEdit (via plugins CodeBrowser, Tags, ClassBrowser, CtagsSideKick, and Jump)
- JOE
- KDevelop
- Kate (via kate-ctags-plugin found on KDE-apps)
- NEdit
- Notepad++ (via OpenCTags plug-in)
- Programmer's Notepad
- QDevelop
- TextMate (via CodeBrowser-PlugIn)
- UltraEdit
- VEDIT
- vi (and derivatives such as Elvis, Nvi, Vim, vile, etc.)
- Zeus IDE
Variants of ctags
There are a few variations of the ctags program:
Etags
Etags is the ctags utility that comes with Emacs. For those options which only make sense for vi style tag files produced by ctages, etags could not recognize them and would ignore them.
Exuberant Ctags
Exuberant Ctags, written and maintained by Darren Hiebert, was distributed with Vim for most of its life, but when Vim 6 was released Exuberant Ctags became a separate project. It includes support for Emacs compatibility.
Exuberant Ctags includes support for over 30 programming languages with the ability to add support for even more using regular expressions.
Tags file formats
There are multiple tag file formats. Some of them are described below.
Ctags and Exuberant Ctags
The original ctags and Exuberant Ctags have similar file formats:
Ctags
This is the format used by vi and various clones. The tags file is normally named "tags".
The tags file is a list of lines, each line in the format:
{tagname}<Tab>{tagfile}<Tab>{tagaddress}
The fields are specified as follows:
- {tagname} – Any identifier, not containing white space
- <Tab> – Exactly one tab character, although many versions of vi can handle any amount of white space
- {tagfile} – The name of the file where {tagname} is defined, relative to the current directory
- {tagaddress} – An ex mode command that will take the editor to the location of the tag. For POSIX implementations of vi this may only be a search or a line number.
The tags file is sorted on the {tagname} field which allows for fast searching of the tags file.
Exuberant Ctags
This is the format used by Vim. It can generate an original ctags file format or an extended format that attempts to retain backward compatibility.
The fields are specified as follows:
{tagname}<Tab>{tagfile}<Tab>{tagaddress}[;"<Tab>{tagfield}...]
The fields up to and including {tagaddress} are the same as for ctags above.
Optional additional fields:
- ;" – semicolon + doublequote: Ends the {tagaddress} in way that looks like the start of a comment to vi.
- {tagfield}
Extended format extends the {tagaddress} field under certain circumstances to include a set of extension fields embedded in an ex comment immediately appended to the ex command, which leaves it backward-compatible with original vi implementations. These extension fields are tab separated "key:value" pairs, documented in the ctags manual
Etags
This is the format used by Emacs etags. The tags file is normally named "TAGS".
The etags files consists of multiple sections—one section per input source file. Sections are plain-text with several non-ascii characters used for special purposes. These characters are represented as bracketed hexadecimal codes below.
A section starts with a two line header, one line containing a single <x0c> character, followed by a line which consists of:
{src_file},{size_of_tag_definition_data_in_bytes}
The header is followed by tag definitions, one definition per line, with the format:
{tag_definition_text}<x7f>{tagname}<x01>{line_number},{byte_offset}
{tagname} (along with x01) can be omitted if the name of the tag can be deduced from the text at the tag definition.
Example
Given a single line test.c source code:
#define CCC(x)
The TAGS file would look like this:
<x0c>
test.c,21
#define CCC(<x7f>CCC<x01>1,0
Note that escape sequences were bracketed for readablity only; < and > brackets are not a part of the final TAGS file.
References
External links
Wikipedia, the free encyclopedia © 2001-2006 Wikipedia contributors (Disclaimer)
This article is licensed under the GNU Free Documentation License.
Last updated on Sunday March 09, 2008 at 07:46:30 PDT (GMT -0700)
View this article at Wikipedia.org - Edit this article at Wikipedia.org - Donate to the Wikimedia Foundation