Author: Charles Zablit Date: 2026-08-13T14:56:19+01:00 New Revision: 807ed4432b22909694a2a0773664de207694d21b
URL: https://github.com/llvm/llvm-project/commit/807ed4432b22909694a2a0773664de207694d21b DIFF: https://github.com/llvm/llvm-project/commit/807ed4432b22909694a2a0773664de207694d21b.diff LOG: [lldb-vscode] make "integratedTerminal" the default console (#171429) This patch changes the default `console` from `"internalConsole"` to `"integratedTerminal"`. `"internalConsole"` in VSCode does not support sending stdin to the debuggee on any platform, whereas `"integratedTerminal"` does. This patch fixes https://github.com/llvm/llvm-project/issues/162887. Added: Modified: lldb/tools/lldb-dap/extension/package.json Removed: ################################################################################ diff --git a/lldb/tools/lldb-dap/extension/package.json b/lldb/tools/lldb-dap/extension/package.json index 4ddc98817203e..f35d61d4e355d 100644 --- a/lldb/tools/lldb-dap/extension/package.json +++ b/lldb/tools/lldb-dap/extension/package.json @@ -660,7 +660,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
