diff --git a/applications/vim.sh b/applications/vim.sh index eab934e..ac8ec3f 100755 --- a/applications/vim.sh +++ b/applications/vim.sh @@ -7,7 +7,7 @@ rm -rf vim # Old method of cloning #(date && hg clone https://vim.googlecode.com/hg/ vim) 2>&1 |tee log # Checkout the latest non alpha or beta tag -git clone https://github.com/vim/vim && cd vim && git checkout $(git tag|sort -n|grep -v '[ab]'|head -n1) +git clone https://github.com/vim/vim && cd vim && git checkout $(git tag|sort -n|grep -v '[ab]'|tail -n1) ./configure --with-features=huge --enable-rubyinterp --enable-pythoninterp --enable-perlinterp --enable-gui=gtk2 --enable-cscope --prefix=/usr --enable-luainterp=dynamic | tee -a log make | tee -a log sudo make install | tee -a log