Files
2015-10-20 20:19:27 +08:00

12 lines
199 B
Batchfile

@echo off
set VIM=vim
if defined THEMIS_VIM set VIM=%THEMIS_VIM%
%VIM% -u NONE -i NONE -N -n -e -s -S %~dp0\test_dot.vim
if %errorlevel% neq 0 goto ERROR
echo Succeeded.
exit /b 0
:ERROR
exit /b 1