├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.rst ├── clang-ctags ├── pylintrc └── test ├── args.sh ├── class.cpp ├── compile_commands.json.in ├── compile_commands.sh ├── emacs.sh ├── enum.cpp ├── function-locals.cpp ├── include.cpp ├── include.h ├── linkage.cpp ├── macros.cpp ├── nested.cpp ├── overload.cpp ├── run-tests.sh ├── struct.cpp ├── subdir ├── a.cpp ├── b.cpp ├── b.h ├── b2.cpp ├── c.cpp ├── d.cpp ├── e.cpp └── f.cpp ├── tags.sh ├── template.cpp ├── union.cpp ├── vim.sh └── why.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/README.rst -------------------------------------------------------------------------------- /clang-ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/clang-ctags -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/pylintrc -------------------------------------------------------------------------------- /test/args.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/args.sh -------------------------------------------------------------------------------- /test/class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/class.cpp -------------------------------------------------------------------------------- /test/compile_commands.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/compile_commands.json.in -------------------------------------------------------------------------------- /test/compile_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/compile_commands.sh -------------------------------------------------------------------------------- /test/emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/emacs.sh -------------------------------------------------------------------------------- /test/enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/enum.cpp -------------------------------------------------------------------------------- /test/function-locals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/function-locals.cpp -------------------------------------------------------------------------------- /test/include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/include.cpp -------------------------------------------------------------------------------- /test/include.h: -------------------------------------------------------------------------------- 1 | void in_header() { } 2 | -------------------------------------------------------------------------------- /test/linkage.cpp: -------------------------------------------------------------------------------- 1 | extern "C" { 2 | int i; 3 | } 4 | -------------------------------------------------------------------------------- /test/macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/macros.cpp -------------------------------------------------------------------------------- /test/nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/nested.cpp -------------------------------------------------------------------------------- /test/overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/overload.cpp -------------------------------------------------------------------------------- /test/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/run-tests.sh -------------------------------------------------------------------------------- /test/struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/struct.cpp -------------------------------------------------------------------------------- /test/subdir/a.cpp: -------------------------------------------------------------------------------- 1 | int MYMACRO; 2 | -------------------------------------------------------------------------------- /test/subdir/b.cpp: -------------------------------------------------------------------------------- 1 | #include "b.h" 2 | -------------------------------------------------------------------------------- /test/subdir/b.h: -------------------------------------------------------------------------------- 1 | int b; 2 | -------------------------------------------------------------------------------- /test/subdir/b2.cpp: -------------------------------------------------------------------------------- 1 | #include "b.h" 2 | -------------------------------------------------------------------------------- /test/subdir/c.cpp: -------------------------------------------------------------------------------- 1 | int c; 2 | -------------------------------------------------------------------------------- /test/subdir/d.cpp: -------------------------------------------------------------------------------- 1 | int d; 2 | -------------------------------------------------------------------------------- /test/subdir/e.cpp: -------------------------------------------------------------------------------- 1 | int e; 2 | -------------------------------------------------------------------------------- /test/subdir/f.cpp: -------------------------------------------------------------------------------- 1 | int f; 2 | -------------------------------------------------------------------------------- /test/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/tags.sh -------------------------------------------------------------------------------- /test/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/template.cpp -------------------------------------------------------------------------------- /test/union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/union.cpp -------------------------------------------------------------------------------- /test/vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/vim.sh -------------------------------------------------------------------------------- /test/why.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drothlis/clang-ctags/HEAD/test/why.sh --------------------------------------------------------------------------------