https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/171429
This patch changes the default `console` from `"internalConsole"` to `"integratedTerminal"`. This patch fixes https://github.com/llvm/llvm-project/issues/162887. >From b89474c8cba7ca980b8941ef7e19316ecec5a52d Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Tue, 9 Dec 2025 12:10:50 +0000 Subject: [PATCH] [lldb-vscode] make "integratedTerminal" the default console --- lldb/tools/lldb-dap/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/tools/lldb-dap/package.json b/lldb/tools/lldb-dap/package.json index e961c2e48b258..d16274e201956 100644 --- a/lldb/tools/lldb-dap/package.json +++ b/lldb/tools/lldb-dap/package.json @@ -621,7 +621,7 @@ "Launch the program inside an external terminal window." ], "description": "Specify where to launch the program: internal console, integrated terminal or external terminal.", - "default": "internalConsole" + "default": "integratedTerminal" }, "stdio": { "type": "array", _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
