diff --git a/test/_setup.vim b/test/_setup.vim index 9a9e81c..7d0a31f 100644 --- a/test/_setup.vim +++ b/test/_setup.vim @@ -1,3 +1,12 @@ let &rtp = expand(':p:h:h') . ',' . &rtp . ',' . expand(':p:h:h') . '/after' set bs=2 ru plugin/delimitMate.vim +let runVimTests = expand(':p:h').'/build/runVimTests' +if isdirectory(runVimTests) + let &rtp = runVimTests . ',' . &rtp +endif +let vimTAP = expand(':p:h').'/build/VimTAP' +if isdirectory(vimTAP) + let &rtp = vimTAP . ',' . &rtp +endif +