libclang
Here are 69 public repositories matching this topic...
Library to parse and work with the C++ AST
-
Updated
Mar 18, 2020 - C++
A vim plugin for libclang-based highlighting of C, C++, ObjC
-
Updated
Apr 10, 2020 - C++
Use Emacs as a C/C++ IDE
-
Updated
May 15, 2020 - Emacs Lisp
When accessing members of an object (through a pointer), it's much faster and more convenient to simply write the . operator and have it automatically converted into a ->
Several IDEs offer this like QtCreator and VisualStudio.
eg:
Foo* Bar;
Bar.
// Magic :D
Bar->ContinueWritingHere
Thanks in advance
C++ Reflection Parser / Runtime Skeleton
-
Updated
Oct 28, 2019 - C++
If I set my filetype to "c.doxygen" to get doxygen doc comment syntax support, most of the colors of Chromatica doesn't work. Variables and function declarations cease being highlighted however function calls are highlighted as expected.
In the README it states that in your .clang file you want to point to a project specific compilation database you need to specify it like so:
compilation_database = "<path to compilation_database>"
Actually you need to specify to the directory that contains it, rather than to the database itself.
i.e. if the file sits at catkin_ws/build/compile_commands.json your .clang file should s
The examples don't run on Travis right now because they fail - the older version of libclang there, even when installing the most recent one from apt, doesn't work the same way as libclang 6.0. The CI script should manually download the right libclang version, just like dstep does.
A library for C++ reflection and introspection
-
Updated
Jul 30, 2017 - C++
Julia interface to libclang and C wrapper generator
-
Updated
Jun 4, 2020 - Julia
C/C++ language server implemented on top of Clang frontend.
-
Updated
Dec 2, 2019 - Python
'Google Mock' mocks generator based on libclang
-
Updated
Dec 11, 2016 - Python
Support for some languages is better than others.
Add a table to the README to make this clear and avoid wasting people's time.
A LuaJIT-based interface to libclang
-
Updated
May 25, 2020 - C
Easy C++ reflection and code generation
-
Updated
Feb 17, 2018 - Python
Module to Interact with libclang (and clang_indexer DB) from Vim.
-
Updated
Mar 30, 2020 - Vim script
Experiments with `libclang`
-
Updated
Sep 8, 2017 - C++
C/C++ Homwork plagiarism detection project (just a useless homework)
-
Updated
Jun 18, 2017 - C++
C++ binding generator based on libclang and pybind11
-
Updated
Jun 6, 2020 - C++
In order to better understand what benefit genpybind could provide to a project, some use cases and links to existing projects might be helpful. For example:
- Expose a C++ API to Python: This one is obvious, but can also be achieved using hand-written bindings. In addition to reducing the manual effort, genpybind helps in those cases where your interface is still undergoing regular changes,
Improve this page
Add a description, image, and links to the libclang topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the libclang topic, visit your repo's landing page and select "manage topics."


Hi, first of all I want to thank the author of this plugin, it is really good. And secondly, are there any plans on docbuffer?