File: index.rst

package info (click to toggle)
universal-ctags 5.9.20210829.0-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 28,024 kB
  • sloc: ansic: 133,059; lisp: 7,664; sh: 7,352; vhdl: 6,517; python: 2,234; perl: 2,229; cpp: 2,099; javascript: 1,576; cs: 1,193; cobol: 741; makefile: 740; sql: 674; php: 666; f90: 534; ruby: 498; yacc: 459; ada: 393; asm: 358; fortran: 345; xml: 308; objc: 289; tcl: 221; java: 157; erlang: 61; ml: 49; awk: 44; haskell: 36
file content (77 lines) | stat: -rw-r--r-- 2,519 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.. Universal Ctags documentation master file

#####################################################################
Universal Ctags Hacking Guide
#####################################################################

:Version: Draft
:Authors: Universal Ctags developers
:Web Page: https://ctags.io/

`Universal Ctags`_ (abbreviated as u-ctags) is a *maintained* implementation of
``ctags``.
``ctags`` generates an index (or tag) file of language objects found in source
files for programming languages.
This index makes it easy for text editors and other tools to locate the indexed
items.

`Exuberant Ctags`_ (e-ctags) maintained by Darren Hiebert, the ancestor of
`Universal Ctags`_, improved traditional ctags with multi-language support, the
ability for the user to define new languages searched by regular expressions
(called optlib in Universal Ctags), and the ability to generate emacs-style TAGS
files.
But the activity of the project unfortunately stalled.

`Universal Ctags`_ has the objective of continuing the development of `Exuberant
Ctags`_.
Reza Jelveh <reza.jelveh@gmail.com> initially created a personal fork of
`Exuberant Ctags`_ on GitHub.
As interest and participation grew, it was decided to move development to a
dedicated project as `Universal Ctags`_.
The goal of this project is to maintain a common/unified working space where
people interested in making ctags better can work together.

Some of major features of `Universal Ctags`_ are;

* more numbers of improved language support
    * new extended C/C++ language parser, etc.
* fully extended optlib (a feature to define a new language parser from a
  command line)
* interactive mode (experimental)

The primary documents of `Universal Ctags`_ are man pages. Users should first
consult the :ref:`ctags(1) <ctags(1)>`, and :ref:`other man pages <man-pages>` if
necessary.

This guide, which also includes the man pages, is primarily for developers and
provides additional information to the man pages, including experimental
features.

This is a draft document. Proofreading and pull-requests are welcome!


.. _Exuberant Ctags: http://ctags.sourceforge.net/
.. _Universal Ctags: https://ctags.io/


.. toctree::
	:maxdepth: 2

	building.rst
	man-pages.rst
	parsers.rst
	option-file.rst
	output-format.rst
	running-multi-parsers.rst
	interactive-mode.rst
	news.rst
	optlib.rst
	optscript.rst
	extending.rst
	testing-ctags.rst
	testing-parser.rst
	testing-readtags.rst
	reporting.rst
	contributions.rst
	other-projects.rst
	developers.rst