歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu 14.04下Vim安裝YouCompleMe插件

Ubuntu 14.04下Vim安裝YouCompleMe插件

日期:2017/2/28 13:51:57   编辑:Linux教程

最權威的原始步驟可以參考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

更多Ubuntu相關信息見Ubuntu 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=2

Copyright © Linux教程網 All Rights Reserved