- Ctags
-
Ctags Developer(s) Ken Arnold Type tag file generator Ctags 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.
Contents
Editors that support ctags
Tag index files are supported by many source code editors, including:
- AcroEdit
- BBEdit 8+
- codelite use ctags as its tag indexer for code completion.
- Emacs and XEmacs
- EmEditor Professional
- Gedit (via gedit-symbol-browser-plugin found on [1])
- JED
- jEdit (via plugins CodeBrowser, Tags, ClassBrowser, CtagsSideKick, and Jump)
- JOE
- KDevelop
- Kate
- Multi-Edit 2008
- NEdit
- Notepad++ (via OpenCTags plug-in)
- Programmer's Notepad
- QDevelop
- TSE (via macro)
- TextMate (via CodeBrowser-PlugIn)
- UltraEdit
- TextPad
- VEDIT
- vi (and derivatives such as Elvis, Nvi, Vim, vile, etc.)
- Zeus IDE [2]
- mcedit (Midnight Commander builtin editor) [3]
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 ctags, etags could not recognize them and would ignore them.
Exuberant Ctags
Exuberant Ctags, written and maintained by Darren Hiebert, was initially distributed with Vim, but became a separate project upon the release of Vim 6.[1] It includes support for Emacs compatibility.
Exuberant Ctags includes support for over 40 programming languages with the ability to add support for even more using regular expressions.
Hasktags
Hasktags creates ctags compatible tag files for Haskell source files.[2] It includes support for creating Emacs etags files.[3]
jsctags
jsctags is a ctags-compatible code indexing solution for JavaScript.[4] It is specialized for JavaScript and its packaging system CommonJS and outperforms Exuberant Ctags for JavaScript code, finding more tags than the latter.[5]
Tags file formats
There are multiple tag file formats. Some of them are described below. In the following, <\x##> represents the byte with hexadecimal representation ##.
Ctags and Exuberant Ctags
The original ctags and Exuberant Ctags have similar file formats:[6]
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
References
- ^ "Vim documentation: version6: ctags-gone". http://vimdoc.sourceforge.net/htmldoc/version6.html#ctags-gone. Retrieved 2007-04-28.
- ^ "GHC documentation: Other Haskell utility programs". http://haskell.org/ghc/docs/latest/html/users_guide/utils.html#hasktags. Retrieved 2010-03-05.
- ^ "hasktags: Produces ctags "tags" and etags "TAGS" files for Haskell programs". http://hackage.haskell.org/package/hasktags. Retrieved 2010-03-05.
- ^ "pcwalton github repository for jsctags". http://github.com/pcwalton/jsctags.
- ^ Patrick Walton. "Introducing jsctags". http://pcwalton.blogspot.com/2010/05/introducing-jsctags.html. Retrieved 2010-05-25.
- ^ "Proposal for extended Vi tags file format". http://ctags.sourceforge.net/FORMAT. Retrieved 2007-06-30.
External links
- The Single UNIX® Specification, Issue 7 from The Open Group : create a tags file – Commands & Utilities Reference,
- Exuberant ctags homepage
- Ctags on VMS
- source code for Emacs vtags.el module
Categories:- Code navigation tools
- Free computer programming tools
- Unix programming tools
- Standard Unix programs
- Unix SUS2008 utilities
Wikimedia Foundation. 2010.