From 17dc5f594f04a1b9600b50d5f8213f1f826763fc Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 2 Feb 2018 17:51:54 +0200 Subject: [PATCH] VSCode: Show debug console for each session --- platformio/ide/tpls/vscode/.vscode/launch.json.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platformio/ide/tpls/vscode/.vscode/launch.json.tpl b/platformio/ide/tpls/vscode/.vscode/launch.json.tpl index 258020b9..900d1438 100644 --- a/platformio/ide/tpls/vscode/.vscode/launch.json.tpl +++ b/platformio/ide/tpls/vscode/.vscode/launch.json.tpl @@ -10,7 +10,8 @@ "target": "{{prog_path.replace('\\\\', '/').replace('\\', '/').replace('"', '\\"')}}", "gdbpath": "{{join(dirname(platformio_path), "piodebuggdb").replace('\\\\', '/').replace('\\', '/').replace('"', '\\"')}}", "autorun": [ "source .pioinit" ], - "preLaunchTask": "PlatformIO: Pre-Debug" + "preLaunchTask": "PlatformIO: Pre-Debug", + "internalConsoleOptions": "openOnSessionStart" } ] } \ No newline at end of file