Skip to content

Commit b61752f

Browse files
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
1 parent 8f59d52 commit b61752f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

vscode.bat

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@echo off
2+
IF [%1] == [] (
3+
REM -- manually opened console (Ctrl + Shift + `) --
4+
CALL "%~dp0\vendor\init.bat"
5+
) ELSE (
6+
REM -- task --
7+
CALL cmd %*
8+
exit
9+
)

0 commit comments

Comments
 (0)