cmder/vendor/bin/vscode_init.cmd

10 lines
166 B
Batchfile

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