vim의 YCM 구성

1852 단어 vim
BundleInstall, 기본적으로 오류 발생
ycm_client_support.[so|pyd|dll] and ycm_core.[so|pyd|dll] not detected; you need to compile YCM before using it. Read the docs!
 
가장 간편한 해결 방법:
cd ~/.vim/bundle/YouCompleteMe 
./install.sh --clang-completer

 
또한vimConfig/plugin/youCompleteMe-setting.vim
1 """"""""""""YCM""""""""""""""""""""
2 let g:ycm_global_ycm_extra_conf = '~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_conf.py'
3 let g:ycm_collect_identifiers_from_tags_files = 1
4 let g:ycm_seed_identifiers_with_syntax = 1
5 let g:ycm_confirm_extra_conf = 0

 
사용자 정의 헤더 파일 경로 추가
수정 ~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_conf.py
flags = ["뒤에 두 줄을 추가합니다.
'-isystem',
'    ',

경로는 ~/aaa를 사용할 수 없습니다. 모든 경로를 사용해야 합니다. 그렇지 않으면 찾을 수 없습니다.

좋은 웹페이지 즐겨찾기