mirror of
https://github.com/cmderdev/cmder.git
synced 2025-12-15 10:18:53 +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:
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
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user