[Lldb-commits] [lldb] [lldb-vscode] make "integratedTerminal" the default console (PR #171429)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 9 04:14:40 PST 2025
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 <c_zablit at apple.com>
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",
More information about the lldb-commits
mailing list