vscode.bat

add that to settings.json

`"terminal.integrated.shell.windows": "cmd.exe",
"terminal.integrated.shellArgs.windows": [
    "/K",
    "%CMDER_ROOT%/vscode.bat",
]`

for using cmder inside vscode
This commit is contained in:
SupinePandora43 2019-06-25 12:37:57 +04:00 committed by GitHub
parent 8f59d529f4
commit b61752f89e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
vscode.bat Normal file
View File

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