[Lldb-commits] [lldb] [lldb] Implement a statusline in LLDB (PR #121860)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 7 06:02:04 PST 2025


================
@@ -1925,6 +1959,17 @@ void Debugger::CancelForwardEvents(const ListenerSP &listener_sp) {
   m_forward_listener_sp.reset();
 }
 
+bool Debugger::StatuslineSupported() {
+  if (GetShowStatusline()) {
+    if (lldb::LockableStreamFileSP stream_sp = GetOutputStreamSP()) {
+      File &file = stream_sp->GetUnlockedFile();
+      return file.GetIsInteractive() && file.GetIsRealTerminal() &&
+             file.GetIsTerminalWithColors();
----------------
DavidSpickett wrote:

So we cannot use the status line without colours, is this intentional?

It would be a niche audience for sure but you could come up with a format string that made it stand out without colour I think.

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


More information about the lldb-commits mailing list