vim下看C++代碼

來源:互聯網
上載者:User

標籤:tps   pre   code   修改   install   arch   encoding   hls   tom   

看C++代碼, 缺少合適的編輯器,搗鼓vim。

  1. 安裝Vundle, 用於外掛程式管理

    git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim --depth=1
  2. 安裝YouCompleteMe,代碼補全

    cd ~/.vim/bundle/ git clone https://github.com/Valloric/YouCompleteMe.git --depth=1cd YouCompleteMe/git submodule update --init --recursive./install.py --clang-completer --system-libclang
  3. 修改 ~/.vimrc,增加下面一段, 管理其他外掛程式

    set rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()Plugin 'VundleVim/Vundle.vim'Plugin 'mileszs/ack.vim'Plugin 'scrooloose/nerdtree'Plugin 'tyok/nerdtree-ack'Plugin 'Xuyuanp/nerdtree-git-plugin'Plugin 'tpope/vim-rails'Plugin 'drmingdrmer/xptemplate'" Begin SnippetPlugin 'MarcWeber/vim-addon-mw-utils'Plugin 'tomtom/tlib_vim'Plugin 'garbas/vim-snipmate'Plugin 'honza/vim-snippets'Plugin 'altercation/vim-colors-solarized'" End SnippetBundle 'Valloric/YouCompleteMe'call vundle#end()set nocompatiblenmap <F2> :NERDTreeToggle<CR>let g:ycm_global_ycm_extra_conf= '~/.vim/.ycm_extra_conf.py'let g:ycm_confirm_extra_conf=0" 基本配置"set mouse=asyntax onset ts=4set sw=4set expandtabset autoindentset nu et si ai pasteset rulerset hlsearchset fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1
    安裝外掛程式命令 :PluginInstall
  4. 使用YouCompleteMe, 安裝Bear

    git clone https://github.com/rizsotto/Bear.git --depth=1cd Bearcmake -DCMAKE_INSTALL_PREFIX=/opt/Bear .make allmake install
  5. 具體使用例子

    cd ~/Documents/work/gitlab/ps-sdkcp make Makefilebear make 
    • 產生compile_commands.json,YouCompleteMe根據它,實現代碼補全。
    • 實際上發現, 還是不行。最終折中方法是使用.ycm_extra_conf.py,在BASE_FLAGS 中加入 json中產生的部分路徑。

vim下看C++代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.