More travis updates

This commit is contained in:
Karl Yngve Lervåg 2016-03-27 22:00:43 +02:00
parent a9fe47ea14
commit 5e2bdacafe
2 changed files with 6 additions and 6 deletions

View File

@ -5,9 +5,9 @@ before_script: |
script: |
vim -Nu <(cat << VIMRC
set rtp+=vader.vim
let &rtp = '.,' . &rtp
set rtp+=after
let &rtp = '.,' . &rtp
let &rtp .= ',after'
let &rtp .= ',vader.vim'
filetype plugin indent on
syntax enable
VIMRC) -c 'Vader! test/vader/*' > /dev/null

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