├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── citre-backend-interface.el ├── citre-common-tag.el ├── citre-common-util.el ├── citre-config.el ├── citre-ctags.el ├── citre-global.el ├── citre-lang-c.el ├── citre-lang-fileref.el ├── citre-lang-verilog.el ├── citre-readtags-tables.el ├── citre-readtags.el ├── citre-tags.el ├── citre-ui-jump.el ├── citre-ui-peek.el ├── citre-xref-adapter.el ├── citre.el ├── docs ├── developer-manual │ ├── contribution-guide.md │ ├── project-structure.md │ ├── the-philosophy-of-the-tags-backend.md │ └── toc.md └── user-manual │ ├── adapt-an-existing-xref-backend.md │ ├── customization.md │ ├── getting-started-on-tags-backend.md │ ├── more-about-tags-backend.md │ ├── source-code-indexing-tools-comparison.md │ ├── toc.md │ ├── use-citre-peek.md │ ├── use-eglot-backend.md │ └── use-global-backend.md ├── img ├── alipay.jpg ├── capf.jpg ├── citre-jump.jpg ├── citre-peek.jpg ├── logo.svg └── wechat-pay.png ├── scripts ├── common.sh ├── compile.sh ├── style.sh ├── test.sh ├── update-test-tags.sh └── version.sh └── tests ├── common-process └── test.el ├── common-tag-api ├── file └── test.el ├── common.el ├── global ├── src.list ├── src │ └── test.c └── test.el ├── tags-default-sorter ├── definition-size.tags └── test.el ├── tags-expression-builder ├── tags └── test.el ├── tags-lang-c ├── README ├── buffer │ ├── buffer-header.h │ ├── buffer-struct-tag.h │ ├── callable-sorting.c │ ├── goto-sorting.c │ └── member-sorting.c ├── src │ ├── a │ │ └── header.h │ ├── b │ │ └── header.h │ ├── dev.h │ ├── dummy.S │ ├── find-found.c │ ├── game.h │ ├── goto-sorting.c │ └── poll.h ├── tags.sh ├── target.tags ├── test.el └── xref │ ├── buffer-header-a.xref │ ├── buffer-header-b.xref │ ├── buffer-not-struct-tag.xref │ ├── buffer-struct-tag.xref │ ├── callable-sorting │ ├── callable-func.xref │ ├── callable-member.xref │ ├── macro.xref │ └── member.xref │ ├── goto-sorting │ ├── call.xref │ └── goto.xref │ └── member-sorting │ ├── arrow.xref │ ├── dotinit.xref │ └── nomember.xref ├── tags-locate-tag ├── backward-pattern-tags ├── backward-pattern-with-line-tags ├── combined-backward-pattern-tags ├── ctags.d │ ├── backward-pattern-with-line.ctags │ ├── backward-pattern.ctags │ ├── combined-backward-pattern.ctags │ ├── forward-pattern.ctags │ ├── number-pattern-with-line.ctags │ ├── number-pattern.ctags │ └── src.list ├── forward-pattern-tags ├── number-pattern-tags ├── number-pattern-with-line-tags ├── src │ ├── add-line.f90 │ ├── change-definition.f90 │ ├── change-indentation.f90 │ ├── change-matched-str.f90 │ ├── original.f90 │ └── remove-all.f90 └── test.el ├── tags-readtags-ext-fields ├── ctags.d │ ├── 0.ctags │ └── src.list ├── src │ └── input.lisp ├── tags ├── tags-absolute-path ├── tags-test-kind-field ├── tags-with-cwd-ptag ├── tags-with-full-kind ├── tags-with-kind-table ├── tags-with-language-field └── test.el └── tags-readtags-lib ├── ctags.d ├── 0.ctags └── src.list ├── src ├── input-area.cpp ├── input-volume.cpp └── input.h ├── tags └── test.el /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/README.md -------------------------------------------------------------------------------- /citre-backend-interface.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-backend-interface.el -------------------------------------------------------------------------------- /citre-common-tag.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-common-tag.el -------------------------------------------------------------------------------- /citre-common-util.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-common-util.el -------------------------------------------------------------------------------- /citre-config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-config.el -------------------------------------------------------------------------------- /citre-ctags.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-ctags.el -------------------------------------------------------------------------------- /citre-global.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-global.el -------------------------------------------------------------------------------- /citre-lang-c.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-lang-c.el -------------------------------------------------------------------------------- /citre-lang-fileref.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-lang-fileref.el -------------------------------------------------------------------------------- /citre-lang-verilog.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-lang-verilog.el -------------------------------------------------------------------------------- /citre-readtags-tables.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-readtags-tables.el -------------------------------------------------------------------------------- /citre-readtags.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-readtags.el -------------------------------------------------------------------------------- /citre-tags.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-tags.el -------------------------------------------------------------------------------- /citre-ui-jump.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-ui-jump.el -------------------------------------------------------------------------------- /citre-ui-peek.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-ui-peek.el -------------------------------------------------------------------------------- /citre-xref-adapter.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre-xref-adapter.el -------------------------------------------------------------------------------- /citre.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/citre.el -------------------------------------------------------------------------------- /docs/developer-manual/contribution-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/developer-manual/contribution-guide.md -------------------------------------------------------------------------------- /docs/developer-manual/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/developer-manual/project-structure.md -------------------------------------------------------------------------------- /docs/developer-manual/the-philosophy-of-the-tags-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/developer-manual/the-philosophy-of-the-tags-backend.md -------------------------------------------------------------------------------- /docs/developer-manual/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/developer-manual/toc.md -------------------------------------------------------------------------------- /docs/user-manual/adapt-an-existing-xref-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/adapt-an-existing-xref-backend.md -------------------------------------------------------------------------------- /docs/user-manual/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/customization.md -------------------------------------------------------------------------------- /docs/user-manual/getting-started-on-tags-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/getting-started-on-tags-backend.md -------------------------------------------------------------------------------- /docs/user-manual/more-about-tags-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/more-about-tags-backend.md -------------------------------------------------------------------------------- /docs/user-manual/source-code-indexing-tools-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/source-code-indexing-tools-comparison.md -------------------------------------------------------------------------------- /docs/user-manual/toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/toc.md -------------------------------------------------------------------------------- /docs/user-manual/use-citre-peek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/use-citre-peek.md -------------------------------------------------------------------------------- /docs/user-manual/use-eglot-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/use-eglot-backend.md -------------------------------------------------------------------------------- /docs/user-manual/use-global-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/docs/user-manual/use-global-backend.md -------------------------------------------------------------------------------- /img/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/img/alipay.jpg -------------------------------------------------------------------------------- /img/capf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/img/capf.jpg -------------------------------------------------------------------------------- /img/citre-jump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/img/citre-jump.jpg -------------------------------------------------------------------------------- /img/citre-peek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/img/citre-peek.jpg -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/img/logo.svg -------------------------------------------------------------------------------- /img/wechat-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/img/wechat-pay.png -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/scripts/compile.sh -------------------------------------------------------------------------------- /scripts/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/scripts/style.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/update-test-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/scripts/update-test-tags.sh -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/scripts/version.sh -------------------------------------------------------------------------------- /tests/common-process/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/common-process/test.el -------------------------------------------------------------------------------- /tests/common-tag-api/file: -------------------------------------------------------------------------------- 1 | This is a line. 2 | -------------------------------------------------------------------------------- /tests/common-tag-api/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/common-tag-api/test.el -------------------------------------------------------------------------------- /tests/common.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/common.el -------------------------------------------------------------------------------- /tests/global/src.list: -------------------------------------------------------------------------------- 1 | src/test.c 2 | -------------------------------------------------------------------------------- /tests/global/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/global/src/test.c -------------------------------------------------------------------------------- /tests/global/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/global/test.el -------------------------------------------------------------------------------- /tests/tags-default-sorter/definition-size.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-default-sorter/definition-size.tags -------------------------------------------------------------------------------- /tests/tags-default-sorter/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-default-sorter/test.el -------------------------------------------------------------------------------- /tests/tags-expression-builder/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-expression-builder/tags -------------------------------------------------------------------------------- /tests/tags-expression-builder/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-expression-builder/test.el -------------------------------------------------------------------------------- /tests/tags-lang-c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/README -------------------------------------------------------------------------------- /tests/tags-lang-c/buffer/buffer-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/buffer/buffer-header.h -------------------------------------------------------------------------------- /tests/tags-lang-c/buffer/buffer-struct-tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/buffer/buffer-struct-tag.h -------------------------------------------------------------------------------- /tests/tags-lang-c/buffer/callable-sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/buffer/callable-sorting.c -------------------------------------------------------------------------------- /tests/tags-lang-c/buffer/goto-sorting.c: -------------------------------------------------------------------------------- 1 | ../src/goto-sorting.c -------------------------------------------------------------------------------- /tests/tags-lang-c/buffer/member-sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/buffer/member-sorting.c -------------------------------------------------------------------------------- /tests/tags-lang-c/src/a/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tags-lang-c/src/b/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tags-lang-c/src/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/src/dev.h -------------------------------------------------------------------------------- /tests/tags-lang-c/src/dummy.S: -------------------------------------------------------------------------------- 1 | found: 2 | call func 3 | -------------------------------------------------------------------------------- /tests/tags-lang-c/src/find-found.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/src/find-found.c -------------------------------------------------------------------------------- /tests/tags-lang-c/src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/src/game.h -------------------------------------------------------------------------------- /tests/tags-lang-c/src/goto-sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/src/goto-sorting.c -------------------------------------------------------------------------------- /tests/tags-lang-c/src/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/src/poll.h -------------------------------------------------------------------------------- /tests/tags-lang-c/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/tags.sh -------------------------------------------------------------------------------- /tests/tags-lang-c/target.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/target.tags -------------------------------------------------------------------------------- /tests/tags-lang-c/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/test.el -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/buffer-header-a.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/buffer-header-a.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/buffer-header-b.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/buffer-header-b.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/buffer-not-struct-tag.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/buffer-not-struct-tag.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/buffer-struct-tag.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/buffer-struct-tag.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/callable-sorting/callable-func.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/callable-sorting/callable-func.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/callable-sorting/callable-member.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/callable-sorting/callable-member.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/callable-sorting/macro.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/callable-sorting/macro.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/callable-sorting/member.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/callable-sorting/member.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/goto-sorting/call.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/goto-sorting/call.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/goto-sorting/goto.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/goto-sorting/goto.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/member-sorting/arrow.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/member-sorting/arrow.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/member-sorting/dotinit.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/member-sorting/dotinit.xref -------------------------------------------------------------------------------- /tests/tags-lang-c/xref/member-sorting/nomember.xref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-lang-c/xref/member-sorting/nomember.xref -------------------------------------------------------------------------------- /tests/tags-locate-tag/backward-pattern-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/backward-pattern-tags -------------------------------------------------------------------------------- /tests/tags-locate-tag/backward-pattern-with-line-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/backward-pattern-with-line-tags -------------------------------------------------------------------------------- /tests/tags-locate-tag/combined-backward-pattern-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/combined-backward-pattern-tags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/backward-pattern-with-line.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/ctags.d/backward-pattern-with-line.ctags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/backward-pattern.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/ctags.d/backward-pattern.ctags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/combined-backward-pattern.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/ctags.d/combined-backward-pattern.ctags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/forward-pattern.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/ctags.d/forward-pattern.ctags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/number-pattern-with-line.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/ctags.d/number-pattern-with-line.ctags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/number-pattern.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/ctags.d/number-pattern.ctags -------------------------------------------------------------------------------- /tests/tags-locate-tag/ctags.d/src.list: -------------------------------------------------------------------------------- 1 | src/original.f90 2 | -------------------------------------------------------------------------------- /tests/tags-locate-tag/forward-pattern-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/forward-pattern-tags -------------------------------------------------------------------------------- /tests/tags-locate-tag/number-pattern-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/number-pattern-tags -------------------------------------------------------------------------------- /tests/tags-locate-tag/number-pattern-with-line-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/number-pattern-with-line-tags -------------------------------------------------------------------------------- /tests/tags-locate-tag/src/add-line.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/src/add-line.f90 -------------------------------------------------------------------------------- /tests/tags-locate-tag/src/change-definition.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/src/change-definition.f90 -------------------------------------------------------------------------------- /tests/tags-locate-tag/src/change-indentation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/src/change-indentation.f90 -------------------------------------------------------------------------------- /tests/tags-locate-tag/src/change-matched-str.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/src/change-matched-str.f90 -------------------------------------------------------------------------------- /tests/tags-locate-tag/src/original.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/src/original.f90 -------------------------------------------------------------------------------- /tests/tags-locate-tag/src/remove-all.f90: -------------------------------------------------------------------------------- 1 | ! Some comment. 2 | -------------------------------------------------------------------------------- /tests/tags-locate-tag/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-locate-tag/test.el -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/ctags.d/0.ctags: -------------------------------------------------------------------------------- 1 | -L ctags.d/src.list 2 | -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/ctags.d/src.list: -------------------------------------------------------------------------------- 1 | src/input.lisp 2 | -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/src/input.lisp: -------------------------------------------------------------------------------- 1 | (defun hello () 2 | (print "Hello!")) 3 | -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags-absolute-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags-absolute-path -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags-test-kind-field: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags-test-kind-field -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags-with-cwd-ptag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags-with-cwd-ptag -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags-with-full-kind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags-with-full-kind -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags-with-kind-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags-with-kind-table -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/tags-with-language-field: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/tags-with-language-field -------------------------------------------------------------------------------- /tests/tags-readtags-ext-fields/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-ext-fields/test.el -------------------------------------------------------------------------------- /tests/tags-readtags-lib/ctags.d/0.ctags: -------------------------------------------------------------------------------- 1 | --fields=Kz{typeref}{end}{line}{signature} 2 | -L ctags.d/src.list 3 | -------------------------------------------------------------------------------- /tests/tags-readtags-lib/ctags.d/src.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-lib/ctags.d/src.list -------------------------------------------------------------------------------- /tests/tags-readtags-lib/src/input-area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-lib/src/input-area.cpp -------------------------------------------------------------------------------- /tests/tags-readtags-lib/src/input-volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-lib/src/input-volume.cpp -------------------------------------------------------------------------------- /tests/tags-readtags-lib/src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-lib/src/input.h -------------------------------------------------------------------------------- /tests/tags-readtags-lib/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-lib/tags -------------------------------------------------------------------------------- /tests/tags-readtags-lib/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal-ctags/citre/HEAD/tests/tags-readtags-lib/test.el --------------------------------------------------------------------------------