mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 17:59:11 +08:00
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:
parent
8f59d529f4
commit
b61752f89e
9
vscode.bat
Normal file
9
vscode.bat
Normal 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
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user