2021-05-12 14:32:11
Ubuntu 14.04下Vim安裝YouCompleMe外掛
最權威的原始步驟可以參考github中關於此外掛的README.md,如果時間允許的話,盡量多看幾遍可以避免很多不必要的麻煩。
版本檢測,一般新系統都滿足,保證Vim>= 7.3.584,支援python就可以了。
第一步:下載Vundle和YouCompleteMe外掛
輸入以下指令,下載Vundle
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
下載成功後,在使用者根目錄下面,修改.vimrc檔案,追加下面語句:
set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'gmarik/Vundle.vim' Plugin 'Valloric/YouCompleteMe' call vundle#end() filetype plugin indent on
然後在vim中先按Esc建,並且輸入以下指令安裝外掛:
:PluginInstall
或在終端中輸入:
vim +PluginInstall +qall
第二步:下載其他必要檔案
- 下載最新版本的LLVM
強烈建議下載已經編譯好的二級制檔案包,如果下載原始檔自己編譯的話,你永遠都不知道會出什麼奇葩錯誤
然後解壓到指定資料夾,過程如下:
cd ~ mkdir ycm_temp cd ycm_temp xz -d clang+llvm-3.6.0-x86_64-linux-gnu-Ubuntu-14.04.tar.xz tar -xvf clang+llvm-3.6.0-x86_64-linux-gnu-ubuntu-14.04.tar
修改clang+llvm-3.6.0-x86_64-linux-gnu資料夾名字為llvm_root_dir
- 下載最新版本的cmake
強烈建議下載已經編譯好的二級制檔案包,如果下載原始檔自己編譯的話,你永遠都不知道會出什麼奇葩錯誤
然後將cmake連線至/usr/bin,比如我的是放在Downloads資料夾下面的,就地解壓,並連結
tar zxvf cmake-3.2.2-Linux-x86_64.tar.gz ln -s /home/li/Downloads/cmake-3.2.2/bin/cmake /usr/bin/cmake
第三步:編譯檔案
執行如下指令,編譯檔案
cd ~ mkdir ycm_build cd ycm_build cmake -G "Unix Makefiles" -DPATH_TO_LLVM_ROOT=~/ycm_temp/llvm_root_dir . ~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp make ycm_support_libs
這樣以來,就算是安裝基本上完成了。
第四步:設定vim
雖然安裝編譯完成了,但距離成功還差一步,設定vim(修改.vimrc),這個根據需要設定便可,比如我的如下:
let g:ycm_global_ycm_extra_conf = '/home/li/.vim/bundle/YouCompleteMe/.ycm_extra_conf.py let g:ycm_seed_identifiers_with_syntax=1 " 語法關鍵字補全 let g:ycm_confirm_extra_conf=0 " 開啟vim時不再詢問是否載入ycm_extra_conf.py設定 inoremap <expr> <CR> pumvisible() ? "<C-y>" : "<CR>" "回車即選中當前項 set completeopt=longest,menu "讓Vim的補全選單行為與一般IDE一致(參考VimTip1228)
出現的問題:
- E492: Not an editor command:
可能的原因有很多,比如我遇到的是許可權問題,為.vim的追加寫入許可權
- 不能正常啟動,有很多紅色的錯誤
可能的原因同樣很多,比如我遇到的是使用編譯器版本不合適,比如gcc5.1.0編譯執行完成之後,錯的不知其所以然
- 沒有.ycm_extra.conf.py檔案
可以參考YCM作者的檔案自己修改或者直接使用它亦或者使用我的(見附件)。將它放在專案根目錄或者指定目錄,比如我放在
$HOME/.vim/bundle/YouCompleteMe/.ycm_extra_conf.py
當然記得修改.vimrc中相應的那行哦!
- 出現其他未知錯誤
vim中輸入
:YcmDebugInfo
檢視相關資訊
- 如果完全按照本教學步驟來,還是出現了大量錯誤
此時要做的不是搜尋其他教學,而是詳細閱讀README.md
附件
# This file is NOT licensed under the GPLv3, which is the license for the rest # of YouCompleteMe. # # Here's the license text for this file: # # This is free and unencumbered software released into the public domain. # # Anyone is free to copy, modify, publish, use, compile, sell, or # distribute this software, either in source code form or as a compiled # binary, for any purpose, commercial or non-commercial, and by any # means. # # In jurisdictions that recognize copyright laws, the author or authors # of this software dedicate any and all copyright interest in the # software to the public domain. We make this dedication for the benefit # of the public at large and to the detriment of our heirs and # successors. We intend this dedication to be an overt act of # relinquishment in perpetuity of all present and future rights to this # software under copyright law. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR # OTHER DEALINGS IN THE SOFTWARE. # # For more information, please refer to <http://unlicense.org/> import os import ycm_core flags = [ '-Wall', '-Wextra', '-Wno-long-long', '-Wno-variadic-macros', '-fexceptions', '-stdlib=libc++', '-std=c++11', '-x', 'c++', '-I', '.', '-isystem', '/usr/include', '-isystem', '/usr/local/include', '-isystem', '/Library/Developer/CommandLineTools/usr/include', '-isystem', '/Library/Developer/CommandLineTools/usr/bin/../lib/c++/v1', ] compilation_database_folder = '' if os.path.exists( compilation_database_folder ): database = ycm_core.CompilationDatabase( compilation_database_folder ) else: database = None SOURCE_EXTENSIONS = [ '.cpp', '.cxx', '.cc', '.c', '.m', '.mm' ] def DirectoryOfThisScript(): return os.path.dirname( os.path.abspath( __file__ ) ) def MakeRelativePathsInFlagsAbsolute( flags, working_directory ): if not working_directory: return list( flags ) new_flags = [] make_next_absolute = False path_flags = [ '-isystem', '-I', '-iquote', '--sysroot=' ] for flag in flags: new_flag = flag if make_next_absolute: make_next_absolute = False if not flag.startswith( '/' ): new_flag = os.path.join( working_directory, flag ) for path_flag in path_flags: if flag == path_flag: make_next_absolute = True break if flag.startswith( path_flag ): path = flag[ len( path_flag ): ] new_flag = path_flag + os.path.join( working_directory, path ) break if new_flag: new_flags.append( new_flag ) return new_flags def IsHeaderFile( filename ): extension = os.path.splitext( filename )[ 1 ] return extension in [ '.h', '.hxx', '.hpp', '.hh' ] def GetCompilationInfoForFile( filename ): if IsHeaderFile( filename ): basename = os.path.splitext( filename )[ 0 ] for extension in SOURCE_EXTENSIONS: replacement_file = basename + extension if os.path.exists( replacement_file ): compilation_info = database.GetCompilationInfoForFile( replacement_file ) if compilation_info.compiler_flags_: return compilation_info return None return database.GetCompilationInfoForFile( filename ) def FlagsForFile( filename, **kwargs ): if database: compilation_info = GetCompilationInfoForFile( filename ) if not compilation_info: return None final_flags = MakeRelativePathsInFlagsAbsolute( compilation_info.compiler_flags_, compilation_info.compiler_working_dir_ ) else: relative_to = DirectoryOfThisScript() final_flags = MakeRelativePathsInFlagsAbsolute( flags, relative_to ) return { 'flags': final_flags, 'do_cache': True }
Vim好用的外掛: YouCompleteMe http://www.linuxidc.com/Linux/2015-08/122485.htm
Ubuntu 15.04下為Vim安裝YouCompleteMe外掛 http://www.linuxidc.com/Linux/2015-07/120352.htm
Vim自動補全外掛----YouCompleteMe安裝與設定 http://www.linuxidc.com/Linux/2014-04/99719.htm
相關文章