completor.vim
completor.vim copied to clipboard
clang path
Hello, Thanks for your effort to maintain this great repo. I would like to use clang for C++ In ubuntu 16.04, I installed clang3.8
sudo apt-get install clang-3.8
and add path for it
let g:completor_clang_binary='/usr/lib/llvm-3.8/lib/libclang-3.8.so'
I would like to ask if it is right syntax because currently it is not working well. Also, in /usr/lib/llvm-3.8/lib/ directory, there are bunch of libclang so files and I am confused which one I would to use.
I am looking forward utilizing completer in c :)
You need to specify a path to the clang binary and not the shared library.
let g:completor_clang_binary='/usr/bin/clang-3.8'