From b61752f89e7ce1cd13786f413f3eeec70b841dd7 Mon Sep 17 00:00:00 2001 From: SupinePandora43 <36124472+SupinePandora43@users.noreply.github.com> Date: Tue, 25 Jun 2019 12:37:57 +0400 Subject: [PATCH] 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 --- vscode.bat | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vscode.bat diff --git a/vscode.bat b/vscode.bat new file mode 100644 index 0000000..77fd534 --- /dev/null +++ b/vscode.bat @@ -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 +)