[Lldb-commits] [lldb] [lldb] Use the terminal height for paging editline completions (PR #119914)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 13 10:55:20 PST 2024
================
@@ -919,7 +937,11 @@ Debugger::Debugger(lldb::LogOutputCallback log_callback, void *baton)
m_collection_sp->GetPropertyAtIndexAsOptionValueUInt64(
ePropertyTerminalWidth);
term_width->SetMinimumValue(10);
- term_width->SetMaximumValue(1024);
----------------
JDevlieghere wrote:
I removed the maximum value here because I didn't want to duplicate it for the terminal height. If this bothers folks I can do that in a separate commit. I don't think it makes sense to arbitrarily limit the upper bound in the age of ultra-wide monitors.
https://github.com/llvm/llvm-project/pull/119914
More information about the lldb-commits
mailing list