ubuntu에서 vim 설치 YouCompleteMe 자습서

ubuntu16.4vim 설치 YouCompleteMe 자습서
YouCompleteMe는vim 코드 힌트 플러그인
1 우선 vim 버전 확인
vim --version

아래와 같다
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 24 2016 16:44:48)
Included patches: 1-1689
Extra patches: 8.0.0056
Modified by [email protected]
Compiled by [email protected]
Huge version without GUI.  Features included (+) or not (-):
+acl             +farsi           +mouse_netterm   +tag_binary
+arabic          +file_in_path    +mouse_sgr       +tag_old_static
+autocmd         +find_in_path    -mouse_sysmouse  -tag_any_white
-balloon_eval    +float           +mouse_urxvt     -tcl
-browse          +folding         +mouse_xterm     +terminfo
++builtin_terms  -footer          +multi_byte      +termresponse
+byte_offset     +fork()          +multi_lang      +textobjects
+channel         +gettext         -mzscheme        +timers
+cindent         -hangul_input    +netbeans_intg   +title
-clientserver    +iconv           +packages        -toolbar
-clipboard       +insert_expand   +path_extra      +user_commands
+cmdline_compl   +job             -perl            +vertsplit
+cmdline_hist    +jumplist        +persistent_undo +virtualedit
+cmdline_info    +keymap          +postscript      +visual
+comments        +langmap         +printer         +visualextra
+conceal         +libcall         +profile         +viminfo
+cryptv          +linebreak       -python          +vreplace
+cscope          +lispindent      +python3         +wildignore
+cursorbind      +listcmds        +quickfix        +wildmenu
+cursorshape     +localmap        +reltime         +windows
+dialog_con      -lua             +rightleft       +writebackup
+diff            +menu            -ruby            -X11
+digraphs        +mksession       +scrollbind      -xfontset
-dnd             +modify_fname    +signs           -xim
-ebcdic          +mouse           +smartindent     -xsmp
+emacs_tags      -mouseshape      +startuptime     -xterm_clipboard
+eval            +mouse_dec       +statusline      -xterm_save
+ex_extra        +mouse_gpm       -sun_workshop    -xpm
+extra_search    -mouse_jsbterm   +syntax          
   system vimrc file: "$VIM/vimrc"
     user vimrc file: "$HOME/.vimrc"
 2nd user vimrc file: "~/.vim/vimrc"
      user exrc file: "$HOME/.exrc"
  fall-back for $VIM: "/usr/share/vim"

vim 버전 최소 7.4 Included patches 가 1578 이상인지 확인하고 vim에 입력
:echo has('python') || has('python3')**

반환값이 1이면 Python을 지원합니다. 0이면 Python을 지원하는 Vim 버전을 받아야 합니다.
2 vim에 Vundle 설치
기사별로 설치https://www.jianshu.com/p/769...
3 Vundle을 사용하여 YouCompleteMe 설치
에 있습니다.vimrc에 다음 내용 추가
Plugin 'Valloric/YouCompleteMe'

그리고 다음과 같이 실행한다.
git clone https://github.com/ycm-core/YouCompleteMe.git ~/.vim/bundle

~/.vim/bundle/YouCompleteMe 디렉토리에서 실행
git submodule update --init --recursive

4 cmake 설치
apt install cmake

5 YouCompleteMe는 최소 7.0의 clang을 요구하기 때문에libclang 8.0을 컴파일합니다
clang --version

문장에 따라 편역하다https://blog.csdn.net/xingyu9...
6 YouCompleteMe 디렉토리에 c 언어 코드 힌트 설치
cd ~/.vim/bundle/YouCompleteMe
python3 install.py --clang-completer

그림에서 보듯이 컴파일에 성공했음을 나타낸다
추가.vimrc 구성
vi .vimrc
let g:ycm_global_ycm_extra_conf='~/.vim/.ycm_extra_conf.py'

그런 다음 원하는 대로 만듭니다.c 파일 테스트 프롬프트

좋은 웹페이지 즐겨찾기