git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@210 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
14 lines
201 B
Batchfile
14 lines
201 B
Batchfile
@echo off
|
|
set a=%1
|
|
set b=%2
|
|
|
|
:: remove ""
|
|
set a=%a:"=%
|
|
set b=%b:"=%
|
|
:: escape space
|
|
set a=%a: =\ %
|
|
set b=%b: =\ %
|
|
|
|
echo on
|
|
"c:\Program Files (x86)\vim\vim73\gvim.exe" -c "DirDiff %a% %b%"
|