[Lldb-commits] [lldb] [lldb] Make the statusline separator configurable (PR #136611)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 21 14:47:02 PDT 2025
================
@@ -176,10 +176,19 @@ let Definition = "debugger" in {
Global,
DefaultTrue,
Desc<"Whether to show a statusline at the bottom of the terminal.">;
- def StatuslineFormat: Property<"statusline-format", "FormatEntity">,
- Global,
- DefaultStringValue<"${ansi.negative}{${target.file.basename}}{ | ${line.file.basename}:${line.number}:${line.column}}{ | ${thread.stop-reason}}{ | {${progress.count} }${progress.message}}">,
- Desc<"The default statusline format string.">;
+ def StatuslineSeparator : Property<"statusline-separator", "String">,
+ Global,
+ DefaultStringValue<"│ ">,
+ Desc<"The default statusline format string.">;
----------------
JDevlieghere wrote:
```suggestion
Desc<"The default statusline separator.">;
```
https://github.com/llvm/llvm-project/pull/136611
More information about the lldb-commits
mailing list