Merge branch 'master' of https://github.com/cmderdev/cmder into alias

This commit is contained in:
Dax T. Games
2019-07-07 13:32:47 -04:00
2 changed files with 13 additions and 3 deletions

9
vendor/bin/vscode_init.cmd vendored Normal file
View File

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