[Lldb-commits] [lldb] [lldb-dap] Add external terminal support (PR #146950)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 7 18:00:33 PDT 2025


================
@@ -242,6 +242,12 @@ struct Configuration {
   std::string platformName;
 };
 
+enum Console : unsigned {
+  eInternalConsole,
+  eIntegratedTerminal,
+  eExternalTerminal
+};
----------------
ashgti wrote:

I think the naming convention in lldb is that these should be:

```cpp
enum Console : unsigned {
  eConsoleInternal,
  eConsoleIntegratedTerminal,
  eConsoleExternalTerminal
};
```

https://github.com/llvm/llvm-project/pull/146950


More information about the lldb-commits mailing list