From 9251b11427b8b0786913003f204a14644717ae6d Mon Sep 17 00:00:00 2001 From: kayomn Date: Thu, 3 Nov 2022 15:51:42 +0000 Subject: [PATCH] Auto-switch to debug console when debugging in VS Code --- .vscode/launch.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9782360..fec89bf 100755 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,6 +9,7 @@ "cwd": "${workspaceRoot}", "valuesFormatting": "parseText", "preLaunchTask": "Build Debug", + "internalConsoleOptions": "openOnSessionStart", }, { @@ -20,6 +21,7 @@ "cwd": "${workspaceRoot}", "valuesFormatting": "parseText", "preLaunchTask": "Build Debug", + "internalConsoleOptions": "openOnSessionStart", }, ] }