completor.vim icon indicating copy to clipboard operation
completor.vim copied to clipboard

Issue with clang library + Jedi goto definition

Open junhyeokahn opened this issue 8 years ago • 1 comments

Hi, Thanks for this awesome plugin. To specify clang library path, I have tried what README says like below,

let g:completor_clang_binary = '/Library/Developer/CommandLineTools/usr/lib/libclang.dylib'

However, it return fail to load libclang and I change like below and it works! Does it matter?

let g:clang_library_path='/Library/Developer/CommandLineTools/usr/lib/libclang.dylib'

Also, I would like to use goto definition or declaration function in python. I was able to download jedi and complete in python file. But I couldn't figure out how to jump to the definition.

Please help me :)

junhyeokahn avatar Jun 13 '17 02:06 junhyeokahn

The value of the config g:completor_clang_binary should be the path of the clang executable binary. The variable g:clang_library_path is not defined by completor.

maralla avatar Jun 19 '17 03:06 maralla