下载:
wget ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
tar jxf vim-7.3.tar.bz2
在7.3的包中的src中./configure出现如下错误:
checking for stack_t... yes
checking whether stack_t has an ss_base field... nochecking --with-tlib argument... empty: automatic terminal library selection
checking for tgetent in -lncurses... no
checking for tgetent in -ltermlib... no
checking for tgetent in -ltermcap... no
checking for tgetent in -lcurses... no
no terminal library found
checking for tgetent()... configure: error: NOT FOUND!
You need to install a terminal library; for example ncurses.
Or specify the name of the library with --with-tlib.
解决方案:
sudo apt-get install libncurses5-dev
然后继续
make
sudo make install
这样就成功升级到7.3了。
Ctrl+Shift+n 重新打开一个终端
vim 回车,即可看到7.3版本了。
==========================================================================
So now can add set column in the .vimrc file:
set colorcolumn=81
然后vim打开文件的时候就会在81行出来一条红色竖线
If you want to change the color of line, add this:
hi ColorColumn ctermbg=lightgrey
Reference:
http://hi.baidu.com/qfq2010/blog/item/575ffd1de659fc77dab4bd06.html
http://hi.baidu.com/%C8%CB%BC%E4%CA%C0%E5%D0%D2%A3%D3%CE/blog/item/8ec39bd252768bc6562c8464.html