[utilities/konsole] /: Raise scrollback limit from 1000 to 10000
Nate Graham <[email protected]>
| Newsgroups | gmane.comp.kde.cvs,gmane.comp.kde.doc |
|---|---|
| Message-ID | <[email protected]> |
Git commit 4a8506ef6d09180af375c9e98c064aa1082a9c84 by Nate Graham, on behalf of Prashant Sati.
Committed on 06/08/2026 at 14:05.
Pushed by ngraham into branch 'master'.
Raise scrollback limit from 1000 to 10000
A scrollback limit of 1000 can be insufficient for some commands.
ENHANCEMENT: 465580
M +1 -1 doc/manual/index.docbook
M +1 -1 src/profile/Profile.cpp
https://invent.kde.org/utilities/konsole/-/commit/4a8506ef6d09180af375c9e98c064aa1082a9c84
diff --git a/doc/manual/index.docbook b/doc/manual/index.docbook
index 224972323..511dde2b2 100644
--- a/doc/manual/index.docbook
+++ b/doc/manual/index.docbook
@@ -90,7 +90,7 @@ Consult your operating system documentation to know what the shell is, how to co
<para>&konsole; uses the notion of scrollback
to allow users to view previously displayed output.
By default, scrollback is on
-and set to save 1000 lines of
+and set to save 10,000 lines of
output in addition to what is currently displayed on the screen.
</para>
<para>As lines of text scroll off the top of the screen, they can be reviewed
diff --git a/src/profile/Profile.cpp b/src/profile/Profile.cpp
index 07d4b703e..7b98f1bc3 100644
--- a/src/profile/Profile.cpp
+++ b/src/profile/Profile.cpp
@@ -124,7 +124,7 @@ const std::vector<Profile::PropertyInfo> Profile::DefaultProperties = {
// Scrolling
{HistoryMode, "HistoryMode", SCROLLING_GROUP, Enum::FixedSizeHistory},
- {HistorySize, "HistorySize", SCROLLING_GROUP, 1000},
+ {HistorySize, "HistorySize", SCROLLING_GROUP, 10000},
{ScrollBarPosition, "ScrollBarPosition", SCROLLING_GROUP, Enum::ScrollBarRight},
{ScrollFullPage, "ScrollFullPage", SCROLLING_GROUP, false},
{HighlightScrolledLines, "HighlightScrolledLines", SCROLLING_GROUP, true},