本文介绍在Linux Mint系统中源码安装vim
关于介绍vim源码安装的网站在:http://www.vim.org/git.php, 我在这里不再过多赘述。本文主要是记录一下自己的安装过程,以便以后参考。
从git上克隆
git clone https://github.com/vim/vim.git
从源码安装,我们需要ncurses库
libncurses5-dev : Developer’s libraries for ncurses
libncursesw5-dev : Developer’s libraries for ncurseswsudo apt-get install libncurses5-dev libncursesw5-dev
设定需要的patch
这里选择了目前最新的patch, 从ftp://ftp.vim.org/pub/vim/patches下载7.4.944.txtpatch -p0 < 7.4.944.txt >& logfile
安装
在src目录make
sudo make install添加到系统路径
sudo update-alternatives –install “/usr/bin/vim” “vim” “/usr/local/bin/vim” 1
sudo update-alternatives –set vim /usr/local/bin/vim