Sha256: c70383924670204923ddabbc391ab35447bf96a54b488272c1916741079a71d5

Contents?: true

Size: 1.85 KB

Versions: 2

Compression:

Stored size: 1.85 KB

Contents

.. _output-json:

======================================================================
JSON output
======================================================================

JSON output goes to standard output by default.
Each generated tag line is represented as an object.

.. code-block:: console

    $./ctags --output-format=json /tmp/foo.py
    {"_type": "tag", "name": "Foo", "path": "/tmp/foo.py", "pattern": "/^class Foo:$/", "kind": "class"}


Object keys which do not start with `_` are normal fields and map
directly to the fields of the default tags file format.

Keys that have names starting with `_` are a JSON format meta field.
Currently only `_type` is used and it can have the values `tag` for a
normal tag or `ptag` for a pseudo tag.

JSON output is still under development and it is expected the format
will change in the future. To give applications a chance to handle
these changes ctags uses a pseudo tag, `JSON_OUTPUT_VERSION`, for
specifying the format version.

.. code-block:: console

   $ ./ctags --extra='p' --pseudo-tags=JSON_OUTPUT_VERSION  --output-format=json /tmp/foo.py
   {"_type": "ptag", "name": "JSON_OUTPUT_VERSION", "path": "0.0", "pattern": "in development"}
   {"_type": "tag", "name": "Foo", "path": "/tmp/foo.py", "pattern": "/^class Foo:$/", "kind": "class"}
   ...

The JSON output format is newly designed and does not need to support
the historical quirks of the default tags file format.

Kind long names are always used instead of kind letters. Enabling the
`k` and/or `K` fields enables the `z` {kind} field internally.

Scope information is always split into scope kinds and scope names.
Enabling the `s` field enables the `Z` {kind} and `p` {scopeKind}
fields internally. As for all kinds, long names are used for printing
; kind letters are never used.

If you need kind letters, open an issue at the GitHub site of
Universal-ctags.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ctags.rb-1.1.4 ext/vendor/ctags/docs/output-json.rst
ctags.rb-1.1.3 ext/vendor/ctags/docs/output-json.rst