And more travis; Use latest vim version

This commit is contained in:
Karl Yngve Lervåg 2016-03-27 22:09:06 +02:00
parent 5e2bdacafe
commit 845f7e493e
2 changed files with 11 additions and 3 deletions

View File

@ -2,8 +2,16 @@ language: vim
before_script: |
git clone https://github.com/junegunn/vader.vim.git
git clone https://github.com/vim/vim
cd vim
./configure --with-features=huge --enable-rubyinterp --enable-pythoninterp
make -j4
sudo make install
cd -
script: |
export PATH="/usr/local/bin:$PATH"
vim --version
vim -Nu <(cat << VIMRC
let &rtp = '.,' . &rtp
let &rtp .= ',after'

View File

@ -209,9 +209,9 @@ function! s:check_version() " {{{1
return
endif
" if v:version <= 703 && !has('patch544')
" echoerr 'vimtex error: Please use Vim version 7.3.544 or newer!'
" endif
if v:version <= 703 && !has('patch544')
echoerr 'vimtex error: Please use Vim version 7.3.544 or newer!'
endif
endfunction
" }}}1