vim

作者: 皮皮v | 来源:发表于2017-10-27 15:23 被阅读0次

    vim-go 安装

    1. 下载最新版的vim
      编译

      ./configure \
              --enable-pythoninterp=yes \
              --with-python-config-dir=/usr/lib64/python2.7/config \
              --enable-python3interp=yes \
              --with-python3-config-dir=/usr/local/python3/lib/python3.6/config-3.6m-x86_64-linux-gnu 
      make && make install 
      
    2. 先安装Vundle插件管理器及其他插件

      git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
      
      

      添加配置文件.vimrc到宿主目录下,进入目录下执行:PluginInstall安装vim相关插件

    3. 安装YouCompleteMe
      进入~/.vim/bundle/YouCompleteMe执行python install.py

    4. 下载golang.org/tools 和golang.org/lint
      通过github进行下载golang.org下包,路径github.com/golang/...

      go get github.com/golang/tools
      move $GOPATH/github.com/golang/tools $GOPATH/golang.org/x/tools
      
    5. 在vim中通过使用:GoBinariesInstall安装相关golang的包

      go install github.com/golang/tools/xxxx
      
    6. 安装ctags

      ./configure && make && make install
      

    vim-go使用问题

    1. vim使用中go第三方包无法进行自动补全。
      确定第三方包或者自定义包已经存在$GOPATH/pkg/目录下,如果不存在通过go install 进行安装, 同时确保包导出名字首字母为大写。

    相关文章

      网友评论

          本文标题:vim

          本文链接:https://www.haomeiwen.com/subject/xezrpxtx.html