Ubuntu 16.04 LTS - 无法在VIM中启用xterm_clipboard

时间:2016-05-06 18:47:42

标签: linux ubuntu vim ubuntu-16.04

我经常使用VIM,以前能够获得+xterm_clipboard support working by using a script provided in a separate post on StackOverflow.我已经在我的机器上重新安装了Ubuntu,并且已经从Ubuntu 14.04.4 LTS迁移( Wily)到Ubuntu 16.04 LTS(Xenial)。

# Get the compile-dependencies of vim
sudo apt-get build-dep vim
# If you haven't got mercurial, get it
sudo apt-get install mercurial
# Get the source
hg clone https://vim.googlecode.com/hg/ vim_source
# Compile it
cd vim_source
./configure \
    --enable-perlinterp=dynamic \
    --enable-pythoninterp=dynamic \
    --enable-rubyinterp=dynamic \
    --enable-cscope \
    --enable-gui=auto \
    --enable-gtk2-check \
    --enable-gnome-check \
    --with-features=huge \
    --with-x \
    --with-compiledby="Your Name <youremail@domain.com>" \
    --with-python-config-dir=/usr/lib/python2.7/config
make && sudo make install

但是,这不再有效,我无法使用&#34; + y 来将缓冲区缓冲到系统剪贴板。我在.configure输出中看不到任何明显的内容,但vim --version在构建时始终显示-xterm_clipboard。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:4)

您应该已经注意到,该源代码不再通过mercurial(hg)托管在Google代码上,并已在提供的脚本生成的错误消息中迁移到GitHub。

您需要使用新的源代码树git,并且需要提前安装一些开发人员库。

代码清单

# Get the compile-dependencies of vim
sudo apt-get -y build-dep vim
# Install the "checkinstall" tool so the "make install" step is
# wrapped and the result is a .deb file that can be removed later by
# your package manager rather than having to hunt down every file deployed
# by "make install", which might not be possible if it overwrites existing
# system files.
sudo apt-get -y install checkinstall
# Install python dev
sudo apt-get -y install python-dev
# Install xorg dev
sudo apt-get -y install xorg-dev
# Install git
sudo apt-get -y install git
# Get the source
git clone https://github.com/vim/vim.git vim_source
# Remove ./configure cache in case we have to run this twice due to permissions
# related issues.
rm vim_source/src/auto/config.cache
# Compile it
cd vim_source
make clean
./configure \
    --enable-perlinterp=dynamic \
    --enable-pythoninterp=dynamic \
    --enable-rubyinterp=dynamic \
    --enable-cscope \
    --enable-gui=auto \
    --enable-gtk2-check \
    --enable-gnome-check \
    --with-features=normal \
    --with-x \
    --with-compiledby="DevNull <darkstar@/dev/null>" \
    --with-python-config-dir=/usr/lib/python2.7/config-$(uname -m)-linux-gnu
# Build quickly (8 parallel jobs, hope your system doesn't get overwhelmed)
make -j8
# Need root to install
sudo checkinstall