Ubuntu下如何升级Vim 8.0

作者: OneTODO | 来源:发表于2016-09-20 13:57 被阅读2695次

    安装参考

    https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source

    神器VIM震撼发布8.0版本

    新特性:

        异步 I/O 支持,channels, JSON

        Jobs

        Timers

        Partials, Lambdas and Closures

        包管理

        新的样式测试

        Viminfo 根据时间戳合并

        GTK+ 3 支持

        支持MS-Windows DirectX

    Vim7版本

    下载源码

    git clone https://github.com/vim/vim.git

    编译前线remove vim相关,

    apt-get remove vim vim-tiny vim-common vim-runtime

    cd vim/src

    ./configure --with-features=huge \

    --enable-multibyte \

    --enable-rubyinterp \

    --enable-pythoninterp \

    --with-python-config-dir=/usr/lib/python2.7/config \

    --enable-python3interp \

    --with-python3-config-dir=/usr/lib/python3.5/config \

    --enable-perlinterp \

    --enable-luainterp \

    --enable-gui=gtk2 --enable-cscope --prefix=/usr

    makeVIMRUNTIMEDIR=/usr/local/share/vim/vim80

    sudomake install

    安装成功在控制台输入vim,如图

    相关文章

      网友评论

        本文标题:Ubuntu下如何升级Vim 8.0

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