ClangAutoComplete
ClangAutoComplete copied to clipboard
Sublime Text 3 plugin that offers auto-completion of C/C++ structure members or class attributes and methods.
@JohannesMP @pl-ca I install ClangAutoComplete plugin from Package Control, and configure the include_dirs like this: "include_dirs" : [ "\"C:\\Program Files (x86)\\CodeBlocks\\MinGW\\lib\\gcc\\mingw32\\4.9.2\\include\"", "\"C:\\Program Files (x86)\\CodeBlocks\\MinGW\\lib\\gcc\\mingw32\\4.9.2\\include\\c++\"", "\"C:\\Program Files (x86)\\CodeBlocks\\MinGW\\lib\\gcc\\mingw32\\4.9.2\\include\\c++\\mingw32\"", "\"C:\\Program Files (x86)\\CodeBlocks\\MinGW\\include\"",...
earlier it was not found even tho I tried all combination of include_dir. Then I installed visual studio and reinstalled llvm clang. Now this is a new error message: 'clang++'...
OS: Windows 10 64-bits Traceback (most recent call last): File "C:\Program Files\Sublime Text 3\sublime_plugin.py", line 591, in on_query_completions res = callback.on_query_completions(v, prefix, locations) File "C:\Users\Rapiz\AppData\Roaming\Sublime Text 3\Packages\ClangAutoComplete\ClangAutoComplete.py", line 105, in...
I came across this while setting up ClangAutoComplete with Sublime 3114. The following exception is thrown on each completion. ``` Traceback (most recent call last): File "C:\Program Files\Sublime Text 3\sublime_plugin.py",...
some function prototype is long and the autocomplete pop-up cannot display all of the function. Is there any to customize the width or to change it automatically?
Any possiblity to support Designated Initializers syntax? For example, we have a struct definition and struct variable here: ``` struct s { int a; int b; }; struct s var...
The reason large solutions where slow I think might be due to os.walk triggering on each completion. I change it to only trigger on view change or save. This should...
so i recently installed this package to work with openframeworks library, though i added its include and lib path to "include dirs" the auto complete doesn't show up for this...