YouCompleteMe 是vim代碼提示插件python
1 首先檢查vim版本git
vim --version
以下所示github
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 pkg-vim-maintainers@lists.alioth.debian.org Compiled by pkg-vim-maintainers@lists.alioth.debian.org 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中 輸入 ubuntu
:echo has('python') || has('python3')**
若是返回值爲1 表明支持Python 若是爲0 需得到支持Python的Vim版本。vim
2 在vim中安裝Vundlewindows
按照文章安裝 https://www.jianshu.com/p/769...
3 在使用Vundle安裝YouCompleteMeruby
在.vimrc中添加如下內容 session
Plugin 'Valloric/YouCompleteMe'
而後執行以下post
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 要求clang至少7.0 因此編譯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文件測試提示