llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Charles Zablit (charles-zablit) <details> <summary>Changes</summary> This patch changes the default `console` from `"internalConsole"` to `"integratedTerminal"`. This patch fixes https://github.com/llvm/llvm-project/issues/162887. --- Full diff: https://github.com/llvm/llvm-project/pull/171429.diff 1 Files Affected: - (modified) lldb/tools/lldb-dap/package.json (+1-1) ``````````diff 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", `````````` </details> https://github.com/llvm/llvm-project/pull/171429 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
