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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
|
.. _ctags-client-tools(7):
==============================================================
ctags-client-tools
==============================================================
Hints for developing a tool using ctags command and tags output
:Version: 6.2.1
:Manual group: Universal Ctags
:Manual section: 7
SYNOPSIS
--------
| **ctags** [options] [file(s)]
| **etags** [options] [file(s)]
DESCRIPTION
-----------
**Client tool** means a tool running the ctags command
and/or reading a tags file generated by ctags command.
This man page gathers hints for people who develop client tools.
PSEUDO-TAGS
-----------
**Pseudo-tags**, stored in a tag file, indicate how
ctags generated the tags file: whether the
tags file is sorted or not, which version of tags file format is used,
the name of tags generator, and so on. The opposite term for
pseudo-tags is **regular-tags**. A regular-tag is for a language
object in an input file. A pseudo-tag is for the tags file
itself. Client tools may use pseudo-tags as reference for processing
regular-tags.
A pseudo-tag is stored in a tags file in the same format as
regular-tags as described in :ref:`tags(5) <tags(5)>`, except that pseudo-tag names
are prefixed with "!_". For the general information about
pseudo-tags, see "TAG FILE INFORMATION" in :ref:`tags(5) <tags(5)>`.
An example of a pseudo tag::
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
The value, "Universal Ctags", associated with the pseudo tag ``TAG_PROGRAM_NAME``, is
used in the field for input file. The description, "Derived from
Exuberant Ctags", is used in the field for pattern.
Universal Ctags extends the naming scheme of the classical pseudo-tags
available in Exuberant Ctags for emitting language specific
information as pseudo tags::
!_{pseudo-tag-name}!{language-name} {associated-value} /{description}/
The language-name is appended to the pseudo-tag name with a separator, "!".
An example of pseudo tag with a language suffix::
!_TAG_KIND_DESCRIPTION!C f,function /function definitions/
This pseudo-tag says "the function kind of C language is enabled
when generating this tags file." ``--pseudo-tags`` is the option for
enabling/disabling individual pseudo-tags. When enabling/disabling a
pseudo tag with the option, specify the tag name only
``TAG_KIND_DESCRIPTION``, without the prefix ("!_") or the suffix ("!C").
Options for Pseudo-tags
~~~~~~~~~~~~~~~~~~~~~~~
``--extras=+p`` (or ``--extras=+{pseudo}``)
Forces writing pseudo-tags.
ctags emits pseudo-tags by default when writing tags
to a regular file (e.g. "tags'.) However, when specifying ``-o -``
or ``-f -`` for writing tags to standard output,
ctags doesn't emit pseudo-tags. ``--extras=+p`` or
``--extras=+{pseudo}`` will force pseudo-tags to be written.
``--list-pseudo-tags``
Lists available types of pseudo-tags and shows whether they are enabled or disabled.
Running ctags with ``--list-pseudo-tags`` option
lists available pseudo-tags. Some of pseudo-tags newly introduced
in Universal Ctags project are disabled by default. Use
``--pseudo-tags=...`` to enable them.
``--pseudo-tags=[+|-]names|*``
Specifies a list of pseudo-tag types to include in the output.
The parameters are a set of pseudo tag names. Valid pseudo tag names
can be listed with ``--list-pseudo-tags``. Surround each name in the set
with braces, like "{TAG_PROGRAM_AUTHOR}". You don't have to include the "!_"
pseudo tag prefix when specifying a name in the option argument for ``--pseudo-tags=``
option.
pseudo-tags don't have a notation using one-letter flags.
If a name is preceded by either the '+' or '-' characters, that
tags's effect has been added or removed. Otherwise the names replace
any current settings. All entries are included if '*' is given.
All entries are removed if nothing ('') is given.
``--fields=+E`` (or ``--fields=+{extras}``)
Attach "extras:pseudo" field to pseudo-tags.
An example of pseudo tags with the field::
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/ extras:pseudo
If the name of a regular tag in a tag file starts with "!_", a
client tool cannot distinguish whether the tag is a regular-tag or
pseudo-tag. The fields attached with this option help the tool
distinguish them.
List of notable pseudo-tags
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Running ctags with ``--list-pseudo-tags`` option lists available types
of pseudo-tags with short descriptions. This subsection shows hints
for using notable ones.
``TAG_EXTRA_DESCRIPTION`` (new in Universal Ctags)
Indicates the names and descriptions of enabled extras::
!_TAG_EXTRA_DESCRIPTION {extra-name} /description/
!_TAG_EXTRA_DESCRIPTION!{language-name} {extra-name} /description/
If your tool relies on some extra tags (extras), refer to
the pseudo-tags of this type. A tool can reject the tags file that
doesn't include expected extras, and raise an error in an early
stage of processing.
An example of the pseudo-tags::
$ ctags --extras=+p --pseudo-tags='{TAG_EXTRA_DESCRIPTION}' -o - input.c
!_TAG_EXTRA_DESCRIPTION anonymous /Include tags for non-named objects like lambda/
!_TAG_EXTRA_DESCRIPTION fileScope /Include tags of file scope/
!_TAG_EXTRA_DESCRIPTION pseudo /Include pseudo tags/
!_TAG_EXTRA_DESCRIPTION subparser /Include tags generated by subparsers/
...
A client tool can know "{anonymous}", "{fileScope}", "{pseudo}",
and "{subparser}" extras are enabled from the output.
Universal Ctags version 6.0 will turn on this pseudo tag by default.
``TAG_FIELD_DESCRIPTION`` (new in Universal Ctags)
Indicates the names and descriptions of enabled fields::
!_TAG_FIELD_DESCRIPTION {field-name} /description/
!_TAG_FIELD_DESCRIPTION!{language-name} {field-name} /description/
If your tool relies on some fields, refer to the pseudo-tags of
this type. A tool can reject a tags file that doesn't include
expected fields, and raise an error in an early stage of
processing.
An example of the pseudo-tags::
$ ctags --fields-C=+'{macrodef}' --extras=+p --pseudo-tags='{TAG_FIELD_DESCRIPTION}' -o - input.c
!_TAG_FIELD_DESCRIPTION file /File-restricted scoping/
!_TAG_FIELD_DESCRIPTION input /input file/
!_TAG_FIELD_DESCRIPTION name /tag name/
!_TAG_FIELD_DESCRIPTION pattern /pattern/
!_TAG_FIELD_DESCRIPTION typeref /Type and name of a variable or typedef/
!_TAG_FIELD_DESCRIPTION!C macrodef /macro definition/
...
A client tool can know "{file}", "{input}", "{name}", "{pattern}",
and "{typeref}" fields are enabled from the output.
The fields are common in languages. In addition to the common fields,
the tool can known "{macrodef}" field of C language is also enabled.
Universal Ctags version 6.0 will turn on this pseudo tag by default.
``TAG_FILE_ENCODING`` (new in Universal Ctags)
TBW
``TAG_FILE_FORMAT``
See also :ref:`tags(5) <tags(5)>`.
``TAG_FILE_SORTED``
See also :ref:`tags(5) <tags(5)>`.
``TAG_KIND_DESCRIPTION`` (new in Universal Ctags)
Indicates the names and descriptions of enabled kinds::
!_TAG_KIND_DESCRIPTION!{language-name} {kind-letter},{kind-name} /description/
If your tool relies on some kinds, refer to the pseudo-tags of
this type. A tool can reject the tags file that doesn't include
expected kinds, and raise an error in an early stage of
processing.
Kinds are language specific, so a language name is always
appended to the tag name as suffix.
An example of the pseudo-tags::
$ ctags --extras=+p --kinds-C=vfm --pseudo-tags='{TAG_KIND_DESCRIPTION}' -o - input.c
!_TAG_KIND_DESCRIPTION!C f,function /function definitions/
!_TAG_KIND_DESCRIPTION!C m,member /struct, and union members/
!_TAG_KIND_DESCRIPTION!C v,variable /variable definitions/
...
A client tool can know "{function}", "{member}", and "{variable}"
kinds of C language are enabled from the output.
Universal Ctags version 6.0 will turn on this pseudo tag by default.
``TAG_KIND_SEPARATOR`` (new in Universal Ctags)
TBW
``TAG_OUTPUT_EXCMD`` (new in Universal Ctags)
Indicates the specified type of EX command with ``--excmd`` option.
``TAG_OUTPUT_FILESEP`` (new in Universal Ctags)
Indicates filename separators ("slash" or "backslsh") used in input fields.
Universal Ctags running on MS Windows replaces backslashes with slashes
when emitting input fields by default. This pseudo tag is for
notifying this replacement to client tools.
See also the description for ``--use-slash-as-filename-separator``
option in :ref:`ctags(1) <ctags(1)>`.
``TAG_OUTPUT_MODE`` (new in Universal Ctags)
Indicates whether using Universal Ctags extended escape sequences ("u-ctags") or not ("e-ctags").
To reduce illegal characters like <Tab> in tags files, Universal
Ctags extends the escape sequences originally used in Exuberant
Ctags, and applies the escaping rules to more fields.
See :ref:`tags(5) <tags(5)>` about the escaping rules.
``--output-format`` option is for choosing the output mode within
the tags output format. See :ref:`ctags(1) <ctags(1)>` about the option.
In "e-ctags" mode, for not violating the tags file format
described in :ref:`tags(5) <tags(5)>`, Universal Ctags skips emitting tag entries
including illegal characters like <Tab>.
In input fields ({tagfile} in :ref:`tags(5) <tags(5)>`), we have one more
condition for applying the escaping rules: ``\`` characters
are not used as filename separators. UNIX-like systems use ``/``
for the purpose. On MS Windows, Universal Ctags converts ``\``
in filenames to ``/`` by default. So, generally this condition is
satisfied. The condition is not satisfied only when you specify
``--use-slash-as-filename-separator=no`` on MS Windows.
``TAG_OUTPUT_VERSION`` (new in Universal Ctags 6.0)
Indicates the language-common interface version of the output::
!_TAG_OUTPUT_VERSION {current}.{age} /.../
The public interface includes common fields, common extras,
pseudo tags.
The maintainer of Universal Ctags may update the numbers,
"{current}" and "{age}" in the same manner as explained
in ``TAG_PARSER_VERSION``.
``TAG_PARSER_VERSION`` (new in Universal Ctags 6.0)
Indicates the interface version of the parser::
!_TAG_PARSER_VERSION!{language-name} {current}.{age} /.../
The public interfaces include kinds, roles, language specific fields,
and language specific extras.
The maintainer of the parser for "${language-name}" may update
the numbers, "{current}" and "{age}" in the following rules:
* If kinds, roles, language specific fields, and/or language
specific extras have been added, removed or changed since last
release, increment "{current}".
* If they have been added since last release, increment "{age}".
* If they have been removed since last release, set "{age}" to 0.
This concept is based on the versioning in **libtool**
(`7.2 Libtool’s versioning system <https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning>`_.)
In Universal Ctags, we simplified the concept with removing
"revision" in the versioning in libtool.
Manual pages for languages may document changes that increase
the number of "{current}".
``TAG_PATTERN_LENGTH_LIMIT`` (new in Universal Ctags)
TBW
``TAG_PROC_CWD`` (new in Universal Ctags)
Indicates the working directory of ctags during processing.
This pseudo-tag helps a client tool solve the absolute paths for
the input files for tag entries even when they are tagged with
relative paths.
An example of the pseudo-tags::
$ cat tags
!_TAG_PROC_CWD /tmp/ //
main input.c /^int main (void) { return 0; }$/;" f typeref:typename:int
...
From the regular tag for "main", the client tool can know the
"main" is at "input.c". However, it is a relative path. So if the
directory where ctags run and the directory
where the client tool runs are different, the client tool cannot
find "input.c" from the file system. In that case,
``TAG_PROC_CWD`` gives the tool a hint; "input.c" may be at "/tmp".
``TAG_PROGRAM_NAME``
Indicates the name of program generating this tags file.
``TAG_PROGRAM_VERSION``
Indicates the version of program generating this tags file.
``TAG_ROLE_DESCRIPTION`` (new in Universal Ctags)
Indicates the names and descriptions of enabled roles::
!_TAG_ROLE_DESCRIPTION!{language-name}!{kind-name} {role-name} /description/
If your tool relies on some roles, refer to the pseudo-tags of
this type. Note that a role owned by a disabled kind is not listed
even if the role itself is enabled.
REDUNDANT-KINDS
---------------
TBW (Write about --fields=+kKzZ)
MULTIPLE-LANGUAGES FOR AN INPUT FILE
------------------------------------
Universal ctags can run multiple parsers.
That means a parser, which supports multiple parsers (**guest parsers** or **sub-parsers**), may output tags for
different languages.
Guest parsers
~~~~~~~~~~~~~~~~~~~~~~~~~~~
A parser can run guest pursers on the areas in a source file.
Consider the following text as a source file ("input.html"):
.. code-block:: html
<html><head>
<script>class MyObject {}</script>
<style type="text/css">h1.heading { color: red; }</style>
</htad>
<h1 class='heading'>title</h1>
</html>
If a user doesn't specify any extras, Universal ctags emits:
.. code-block:: console
$ ctags -o - input.html
title input.html /^<h1 class='heading'>title<\/h1>$/;" h
These is no issue here.
``running guest pursers`` extra is disabled by default.
If a user enables the ``running guest parsers`` extra with specifying
``--extras=+{guest}`` or ``--extras=+g``, Universal ctags emits:
.. code-block:: console
$ ctags -o - --extras='{guest}' input.html
MyObject input.html /class MyObject {}/;" c
h1.heading input.html /h1.heading { color: red; }/;" c
title input.html /^<h1 class='heading'>title<\/h1>$/;" h
Universal ctags extracts the language objects for CSS and JavaScript; the HTML
parser runs JavaScript parser on the area "``<script>...</script>``" area
and CSS parser on the area "``<style ...> ...</style>``" area.
If a client tool assumes that ctags runs one parser for an input file,
the tool may tell "MyObject is a class of HTML" and/or "h1.heading is
a class of HTML" to its users. ``c`` is too few information to
tell what is "MyObject" and what is "h1.heading" correctly. The
client tool needs more information.
``language``/``l`` field can be used to show the language
for each tag.
.. code-block:: console
$ ctags -o - --extras='{guest}' --fields=+'{language}' input.html
MyObject input.html /class MyObject {}/;" c language:JavaScript
h1.heading input.html /h1.heading { color: red; }/;" c language:CSS
title input.html /^<h1 class='heading'>title<\/h1>$/;" h language:HTML
For some class tools, the ``language:`` field provides enough information.
Universal ctags can emits more self-descriptive tag file.
Enabling ``K`` field with ``--fields=+K`` option, Universal ctags uses
long-names instead of single-letter to represent kind fields:
.. code-block:: console
$ ctags -o - --extras='{guest}' --fields=+'{language}K' input.html
MyObject /tmp/input.html /class MyObject {}/;" class language:JavaScript
h1.heading /tmp/input.html /h1.heading { color: red; }/;" class language:CSS
title /tmp/input.html /^<h1 class='heading'>title<\/h1>$/;" heading1 language:HTML
The long-name representation makes tag files larger.
If you want to keep a tag file small, you can make your tool utilize pseudo-tags
instead of enabling ``K`` field. Universal ctags emits the following line at the
beginning of a tags file by default:
.. code-block:: console
$ cat ./tags
...
!_TAG_KIND_DESCRIPTION!CSS c,class /classes/
...
!_TAG_KIND_DESCRIPTION!HTML c,class /classes/
!_TAG_KIND_DESCRIPTION!HTML h,heading1 /H1 headings/
...
!_TAG_KIND_DESCRIPTION!JavaScript c,class /classes/
...
From the second field of the output, a tool can know the mapping
between a single-letter for a kind and a long-name for the kind.
Universal ctags emits pseudo-tags to tag files by default. However, if
you make ctags emit to standard output with ``-o -`` or ``-f -``
option, ctags doesn't print pseudo-tags. ``pseudo``/``p`` extra
forces emitting.
.. code-block:: console
$ ctags -o - --extras='{guest}{pseudo}' --fields=+'{language}' input.html
...
!_TAG_KIND_DESCRIPTION!CSS c,class /classes/
...
!_TAG_KIND_DESCRIPTION!HTML c,class /classes/
!_TAG_KIND_DESCRIPTION!HTML h,heading1 /H1 headings/
...
!_TAG_KIND_DESCRIPTION!JavaScript c,class /classes/
...
Sub-parsers
~~~~~~~~~~~~~~~~~~~~~~~~~~~
TBW
UTILIZING READTAGS
-----------------------------------
See :ref:`readtags(1) <readtags(1)>` to know how to use readtags. This section is for discussing
some notable topics for client tools.
Build Filter/Sorter Expressions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Certain escape sequences in expressions are recognized by readtags. For
example, when searching for a tag that matches ``a\?b``, if using a filter
expression like ``'(eq? $name "a\?b")'``, since ``\?`` is translated into a
single ``?`` by readtags, it actually searches for ``a?b``.
Another problem is: If the client tools talks to readtags not by subprocess
directly, but through a shell, then if a single quote appear in filter
expressions (which is also wrapped by single quotes), it terminates the
expression, producing broken expressions, and may even cause unintended shell
injection. Single quotes can be escaped using ``'"'"'``.
So, client tools need to:
* Replace ``\`` by ``\\``
* Replace ``'`` by ``'"'"'``, if it talks to readtags through a shell.
inside the expressions. If the expression also contains strings, ``"`` in the
strings needs to be replaced by ``\"``.
Another thing to notice is that missing fields are represented by ``#f``, and
applying string operators to them will produce an error. You should always
check if a field is missing before applying string operators. See the
"Filtering" section in :ref:`readtags(1) <readtags(1)>` to know how to do this. Run "readtags -H
filter" to see which operators take string arguments.
Build Filter/Sorter Expressions using Lisp Languages
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Client tools written in Lisp could build the expression using lists. ``prin1``
(in Common Lisp style Lisps) and ``write`` (in Scheme style Lisps) can
translate the list into a string that can be directly used. For example, in
EmacsLisp:
.. code-block:: EmacsLisp
(let ((name "hi"))
(prin1 `(eq? $name ,name)))
=> "(eq\\? $name "hi")"
The "?" is escaped, and readtags can handle it.
Escape sequences produced by ``write`` in Scheme style Lisps are exactly those
supported by readtags, so any legal readtags expressions can be used. Common
Lisp style Lisps may produce escape sequences that are unrecgonized by
readtags, like ``\#``, so symbols that contain "#" can't be used. Readtags
provides some aliases for these Lisps, so they should:
* Use ``true`` for ``#t``.
* Use ``false`` for ``#f``.
* Use ``nil`` or ``()`` for ``()``.
* Use ``(string->regexp "PATTERN")`` for ``#/PATTERN/``. Use
``(string->regexp "PATTERN" :case-fold true)`` for ``#/PATTERN/i``. Notice
that ``string->regexp`` doesn't require escaping "/" in the pattern.
Notice that if the client tool talks to readtags through a shell, then in the
produced string, ``'`` still needs to be replaced by ``'"'"'`` to prevent
broken expressions and shell injection.
Parse Readtags Output
~~~~~~~~~~~~~~~~~~~~~
In the output of readtags, tabs can appear in all field values (e.g., the tag
name itself could contain tabs), which makes it hard to split the line into
fields. Client tools should use the ``-E`` option, which keeps the escape
sequences in the tags file, so the only field that could contain tabs is the
pattern field.
The pattern field could:
- Use a line number. It will look like ``number;"`` (e.g. ``10;"``).
- Use a search pattern. It will look like ``/pattern/;"`` or ``?pattern?;"``.
Notice that the search pattern could contain tabs.
- Combine these two, like ``number;/pattern/;"`` or ``number;?pattern?;"``.
These are true for tags files using extended format, which is the default one.
The legacy format (i.e. ``--format=1``) doesn't include the semicolons. It's
old and barely used, so we won't discuss it here.
Client tools could split the line using the following steps:
* Find the first 2 tabs in the line, so we get the name and input field.
* From the 2nd tab:
* If a ``/`` follows, then the pattern delimiter is ``/``.
* If a ``?`` follows, then the pattern delimiter is ``?``.
* If a number follows, then:
* If a ``;/`` follows the number, then the delimiter is ``/``.
* If a ``;?`` follows the number, then the delimiter is ``?``.
* If a ``;"`` follows the number, then the field uses only line number, and
there's no pattern delimiter (since there's no regex pattern). In this
case the pattern field ends at the 3rd tab.
* After the opening delimiter, find the next unescaped pattern delimiter, and
that's the closing delimiter. It will be followed by ``;"`` and then a tab.
That's the end of the pattern field. By "unescaped pattern delimiter", we
mean there's an even number (including 0) of backslashes before it.
* From here, split the rest of the line into fields by tabs.
Then, the escape sequences in fields other than the pattern field should be
translated. See "Proposal" in :ref:`tags(5) <tags(5)>` to know about all the escape sequences.
Make Use of the Pattern Field
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The pattern field specifies how to find a tag in its source file. The code
generating this field seems to have a long history, so there are some pitfalls
and it's a bit hard to handle. A client tool could simply require the ``line:``
field and jump to the line it specifies, to avoid using the pattern field. But
anyway, we'll discuss how to make the best use of it here.
You should take the words here merely as suggestions, and not standards. A
client tool could definitely develop better (or simpler) ways to use the
pattern field.
From the last section, we know the pattern field could contain a line number
and a search pattern. When it only contains the line number, handling it is
easy: you simply go to that line.
The search pattern resembles an EX command, but as we'll see later, it's
actually not a valid one, so some manual work are required to process it.
The search pattern could look like ``/pat/``, called "forward search pattern",
or ``?pat?``, called "backward search pattern". Using a search pattern means
even if the source file is updated, as long as the part containing the tag
doesn't change, we could still locate the tag correctly by searching.
When the pattern field only contains the search pattern, you just search for
it. The search direction (forward/backward) doesn't matter, as it's decided
solely by whether the ``-B`` option is enabled, and not the actual context. You
could always start the search from say the beginning of the file.
When both the search pattern and the line number are presented, you could make
good use of the line number, by going to the line first, then searching for the
nearest occurrence of the pattern. A way to do this is to search both forward
and backward for the pattern, and when there is a occurrence on both sides, go
to the nearer one.
What's good about this is when there are multiple identical lines in the source
file (e.g. the COMMON block in Fortran), this could help us find the correct
one, even after the source file is updated and the tag position is shifted by a
few lines.
Now let's discuss how to search for the pattern. After you trim the ``/`` or
``?`` around it, the pattern resembles a regex pattern. It should be a regex
pattern, as required by being a valid EX command, but it's actually not, as
you'll see below.
It could begin with a ``^``, which means the pattern starts from the beginning
of a line. It could also end with an *unescaped* ``$`` which means the pattern
ends at the end of a line. Let's keep this information, and trim them too.
Now the remaining part is the actual string containing the tag. Some characters
are escaped:
* ``\``.
* ``$``, but only at the end of the string.
* ``/``, but only in forward search patterns.
* ``?``, but only in backward search patterns.
You need to unescape these to get the literal string. Now you could convert
this literal string to a regexp that matches it (by escaping, like
``re.escape`` in Python or ``regexp-quote`` in Elisp), and assemble it with
``^`` or ``$`` if the pattern originally has it, and finally search for the tag
using this regexp.
Remark: About a Previous Format of the Pattern Field
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In some earlier versions of Universal Ctags, the line number in the pattern
field is the actual line number minus one, for forward search patterns; or plus
one, for backward search patterns. The idea is to resemble an EX command: you
go to the line, then search forward/backward for the pattern, and you can
always find the correct one. But this denies the purpose of using a search
pattern: to tolerate file updates. For example, the tag is at line 50,
according to this scheme, the pattern field should be::
49;/pat/;"
Then let's assume that some code above are removed, and the tag is now at
line 45. Now you can't find it if you search forward from line 49.
Due to this reason, Universal Ctags turns to use the actual line number. A
client tool could distinguish them by the ``TAG_OUTPUT_EXCMD`` pseudo tag, it's
"combine" for the old scheme, and "combineV2" for the present scheme. But
probably there's no need to treat them differently, since "search for the
nearest occurrence from the line" gives good result on both schemes.
JSON OUTPUT
-----------
See :ref:`ctags-json-output(5) <ctags-json-output(5)>`.
CHANGES
-----------
Version 6.0
~~~~~~~~~~~
* ctags enables ``TAG_KIND_DESCRIPTION``, ``TAG_ROLE_DESCRIPTION``,
``TAG_FIELD_DESCRIPTION``, and ``TAG_EXTRA_DESCRIPTION`` pseudo tags by default.
* ``TAG_PARSER_VERSION`` is introduced.
SEE ALSO
--------
:ref:`ctags(1) <ctags(1)>`, :ref:`ctags-lang-python(7) <ctags-lang-python(7)>`, :ref:`ctags-incompatibilities(7) <ctags-incompatibilities(7)>`, :ref:`tags(5) <tags(5)>`, :ref:`ctags-json-output(5) <ctags-json-output(5)>`, :ref:`readtags(1) <readtags(1)>`,
`7.2 Libtool’s versioning system <https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning>`
|