From 8975c78ef07aae3917188d9c6af2a1f9a0a0c11a Mon Sep 17 00:00:00 2001 From: cctv130 <133784576+cctv130@users.noreply.github.com> Date: Wed, 20 Mar 2024 04:33:43 +0800 Subject: [PATCH] Update debug-launch.md (#3647) Co-authored-by: Garrett Campbell <86264750+gcampbell-msft@users.noreply.github.com> --- docs/debug-launch.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/debug-launch.md b/docs/debug-launch.md index b34f89c2..7bb7e145 100644 --- a/docs/debug-launch.md +++ b/docs/debug-launch.md @@ -74,7 +74,7 @@ Here are minimal examples of a `launch.json` file that uses `cmake.launchTargetP "value": "Something something" } ], - "console": "externalTerminal", + "externalConsole": true, "MIMode": "gdb", "setupCommands": [ { @@ -113,7 +113,7 @@ Here are minimal examples of a `launch.json` file that uses `cmake.launchTargetP "value": "Something something" } ], - "console": "externalTerminal", + "externalConsole": true, "MIMode": "lldb" } ] @@ -145,7 +145,7 @@ Here are minimal examples of a `launch.json` file that uses `cmake.launchTargetP "value": "Something something" } ], - "console": "externalTerminal" + "externalConsole": true } ] } @@ -177,7 +177,7 @@ Here are minimal examples of a `launch.json` file that uses `cmake.launchTargetP "value": "Something something" } ], - "console": "externalTerminal" + "externalConsole": true } ] }