clang_complete icon indicating copy to clipboard operation
clang_complete copied to clipboard

Vim plugin that use clang for completing C/C++ code.

Results 104 clang_complete issues
Sort by recently updated
recently updated
newest added

Hello, It would be helpful if in the doc it would be written which versions of clang the plugin works with.

Hi, I'm using clang_complete on a big project with a compile_commands.json file. I'm also keeping additional source files in my personal repo, and I've symlinked them to the project tree...

By entering a shell command surrounded by backticks ``` in the **.clang_complete** file, clang complete will execute command, and treat any output to stdout as more lines in the **.clang_complete**...

My environment is Ubuntu 13.10 with Clang 3.4(comes from Ubuntu repository) with libc++. let g:clang_library_path = '/usr/lib/llvm-3.4/lib' let g:clang_user_options = '-std=c++11 -stdlib=libc++' Somehow, clang_complete doens't work only on std::vector. When...

"strcmp(" will lead to: ``` strcmp(strcmp(const_char_*__s1,_const_char_*__s2) ``` Only strcmp could lead to the correct result. I think this should be a bug, or at least need to be enhanced. Thanks,...

From 0.012s to 0.004s. I'm using pyeval() in vim to avoid all the str() call in python. That way, no conversion is done. However, this requires an up to date...

Incorporate the feedback from https://github.com/Rip-Rip/clang_complete/pull/29 From what I understand, libclang will either soon support or does already support passing in a current working directory instead of using getcwd(). Once that's...

This code is not intended to be pushed as-it, my plan is to move nearly all the code inside the thread, and to avoid freezing the UI by returning as...

I wanted to be able to use out of tree builds with cmake, and not have to worry about copying over the compile_commands.json file. In this branch, you are now...

When switching between buffers, the quickfix window does not automatically update. This patch checks when a BufEnter event happens, and refreshes the quickfix window.