前两天装ubuntu ,发现vim里不能直接使用的系统的剪贴板,每次都得敲“+yy 命令 很烦,就重新编译了下
在这mark一下命令
前期要安装一些库 乱起八糟的一大堆 就不一一列举了 看你自己需要什么
sudo apt-get build-dep vim
# Compile
./configure \ --enable-perlinterp --enable-pythoninterp --enable-rubyinterp --enable-cscope --enable-gui=auto
--enable-gtk2-check --enable-gnome-check --with-features=huge --with-x
--with-python-config-dir=/usr/lib/python2.7/config
make && sudo make install
使用clipboard主要就是加上--with-x这个选项
另外因为配置里需要python 所以把其他的一些选项也加了进去 , 编译+python的时候 注意
/usr/lib/python2.7/config 这个文件夹一定要有 没有的话 安装下这个库
sudo apt-get install python-dev
vim --version 察看下该+的有没有加好
阅读(8488) | 评论(0) | 转发(0) |