From 5e2bdacafe879213ed03997fe3957004df5bbe9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Yngve=20Lerv=C3=A5g?= Date: Sun, 27 Mar 2016 22:00:43 +0200 Subject: [PATCH] More travis updates --- .travis.yml | 6 +++--- autoload/vimtex.vim | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index d3601d9..2408f90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/autoload/vimtex.vim b/autoload/vimtex.vim index ba58636..72364fd 100644 --- a/autoload/vimtex.vim +++ b/autoload/vimtex.vim @@ -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