mirror of
https://github.com/machakann/vim-sandwich.git
synced 2026-05-28 00:26:34 +02:00
12 lines
199 B
Batchfile
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
|