跳到主要內容

[Linux] Vundle 安裝 YouCompleteMe for Vim

YCM 的安裝看似很難,但其實很簡單。
這篇記錄一下最直接乾脆的安裝方式。
當然步驟還是有點多,但忍耐一下,裝一次就上手了。

簡單記錄步驟:
  1. 先確定有沒有 ~/.vim/bundle 這個資料夾,沒有的話就建立一個。
    mkdir -p ~/.vim/bundle
  2. git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
  3. 在~/.vimrc 內設定套件安裝路徑,也可以依照預設的路徑設定:

    call vundle#begin()
    " alternatively, pass a path where Vundle should install plugins
    "call vundle#begin('~/some/path/here')
  4. 在 .vimrc 內加入 Plugin 'Valloric/YouCompleteMe'
  5. 存檔並執行 :source %,然後執行 :PluginInstall
  6. 如果之後想要移除套件,就在 .vimrc 內將套件名字註解,例如可以把 Plugin 'Valloric/YouCompleteMe' 這行註解掉,然後存檔,重新進入 vim 執行 :PluginClean 即可。

若出現以下錯誤訊息:

The ycmd server SHUT DOWN (restart with ':YcmRestartServer'). YCM ... YCM before using it . Follow the instruction in the documentation.

這個訊息不要理它。

下一步要做的,就是直接依照官方說明來安裝:
  1. cd ~/.vim/bundle/YouCompleteMe/
  2. 我是64位元電腦,在準備執行下一步 python3 ./install.py --all 之前,要先確保以下套件安裝完畢:
    mono-complete, xbuilder, gocode, python3-dev, vim-gocomplete, gccgo-go, npm, cargo
    反正就是看等一下執行python3 ./install.py -all 結果顯示缺什麼套件,就安裝那些套件,然後重跑一次python3 ./install.py --all
  3. 執行 python ./install.py --all,這樣可以替所有程式語言安裝YCM的功能,當然你可以選擇只要安裝特定語言的自動補全,我是選擇全部語言都支援。
  4. 大功告成。
對了,可以在 ~/.vimrc 內,加入以下幾行來關閉 YCM 的語法檢查,免得有時候 YCM 語法檢查會擾亂工作:

let g:ycm_show_diagnostics_ui=0 
let g:ycm_enable_diagnostic_signs=0
let g:ycm_enable_diagnostic_highlighting=0

[錯誤訊息排除]
目前我遇到的錯誤訊息有:
開啟 Vim 時,出現:

AttributeError: 'module' object has no attribute 'FlagsForFile'

解決方法參考:這篇文章

將以下程式碼輸入到 .ycm_extra_conf.py 的最尾端:

import ycm_core
flags = [
    '-Wall',  
    '-Wextra',  
    '-Werror', 
    '-Wno-long-long', 
    '-Wno-variadic-macros', 
    '-fexceptions',  
    '-ferror-limit=10000',  
    '-DNDEBUG', 
    '-std=c99',  
    '-xc',  
    '-isystem/usr/include/',  
    ]
SOURCE_EXTENSIONS = [
                         '.cpp',
                         '.cxx',
                         '.cc',
                         '.c',
                         ]

def FlagsForFile( filename, **kwargs ):  
    return {
        'flags': flags,  
        'do_cache': True  
    }


然後在 .vimrc 內加入:

 let g:ycm_global_ycm_extra_conf = "~/.vim/bundle/YouCompleteMe/.ycm_extra_conf.py"

然後再重新啟動 vim 一次就可以了。

參考資料1
參考資料2





留言

這個網誌中的熱門文章

[程式競賽] UVa 572, Oil Deposits,Flood Fill 演算法

原題目簡述如下: 以 m x n 大小的 grid 代表一張地圖,現今要在此地圖內探勘,找出油田。某一區塊如果標示 "@" 代表有油,"*" 代表沒有油。 "@" 相鄰的區域的聯集,可視為一個油田。(所謂相鄰,除了上下左右,斜向的相鄰也算進去) 求任意地圖中,油田的個數。 例如輸入的測資為: *    *   *    *  @ *   @  @  *  @ *   @   *   *  @ @ @  @   * @ @ @   *   *  @ 則油田個數為 2。 想法 採用典型的倒水演算法(Flood Fill),走訪 "@" 出現的區域,從此往下倒水,倒過水的區域標上 id,因此透過 id 的編號,可以得知油田的個數。 實作 先實作倒水演算法的子函式: void floodfill(vector<vector<char> >& map,                vector<vector<int>  >& id_table,                int row, int col, int id) {    if(row < 0 || (row >= map.size()) )   return;    if(col < 0 || (col >= map[0].size())) return;    if(map[row][col] != '@' || id_table[row][col] > 0) return;    id_table[row][col] = id;    floodfill(map, id_table, row-1, col-1, id);    floodfill(map, id_table, row-1, col,   id);    floodfill(map, id_table, row-1, col+1, id);    floodfill(map, id_table, row,   col-1, id);    floodfill(map, id_table, row,   col+1,

[Python] print 同時輸出到 file 和 console

在 Python 撰寫程式時,我們會希望螢幕 stdout 輸出可以同時記錄到 log 檔案裡。 但是螢幕輸出可能含有 ASCII escape codes 的顏色資訊,輸出的 log 檔案會有類似 ^[[01;32m 這種字樣出現。 我採用比較簡單的解法: 先將 print 函式輸出的訊息,同時導向到螢幕,同時儲存在指定的 log.txt 檔案中。 再用 sed 指令,將 log.txt 內的 ASCII escape code 清除。 方法如下: import sys class PrintLog(object): def __init__(self): self.console = sys.stdout self.log_file = open("log.txt", "w") def write(self, msg): self.console.write(msg) self.log_file.write(msg) def flush(self): pass def main(): original_stdout = sys.stdout sys.stdout = PrintLog() print " This is a testing message." sys.stdout = original_stdout if(__name__ == "__main__"): main() 也就是將 sys.stdout 指向自定義的 PrintLog class,讓 PrintLog 來處理輸出文字,用完 PrintLog 後再把 sys.stdout 導向回原本的 stdout。 接著使用 sed 指令刪除 log.txt 的 ASCII escape code: sed -i 's/\x1b[^m]*m//g' ./log.txt 上面的正規,\x 後面用來接一個 16 進位 ASCII 編碼,其中 1b 代表的是 ESC 退出鍵。 到此即可獲得沒有顏色編碼的 log.tx

[Python] 單引號,雙引號和三引號

在此解釋各種引號的意義。 雙引號跟單引號,在 Python 中的基本上沒差別,都可以代表字串: "This is a string" 'This is a string' 並且雙引號內可包含單引號,反之,如果用的是單引號,則單引號內可包含雙引號: "We call it 'Dog'...... " 'We call it "Dog"...... ' 三個雙引號,就可以直接輸入有換行的字串: """haha, this is a dog.""" 三個單引號要換行,就要輸入"\": '''haha, \ this is a dog.'''