cmder/vscode.bat

10 lines
171 B
Batchfile
Raw Normal View History

@echo off
IF [%1] == [] (
REM -- manually opened console (Ctrl + Shift + `) --
CALL "%~dp0\vendor\init.bat"
) ELSE (
REM -- task --
CALL cmd %*
exit
)