From fd266a3ceca7242839986b2deb003438fabbaf92 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 2 Aug 2013 22:33:40 +0000 Subject: [PATCH] Raise the default scrollback from 200 to 2000 lines. The former was not so silly in the 1990s and before I implemented scrollback compression, but it's been a ridiculously low default for a while now. [originally from svn r9982] --- settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.c b/settings.c index a561602c..6499686b 100644 --- a/settings.c +++ b/settings.c @@ -848,7 +848,7 @@ void load_open_settings(void *sesskey, Conf *conf) / 1000 #endif ); - gppi(sesskey, "ScrollbackLines", 200, conf, CONF_savelines); + gppi(sesskey, "ScrollbackLines", 2000, conf, CONF_savelines); gppi(sesskey, "DECOriginMode", 0, conf, CONF_dec_om); gppi(sesskey, "AutoWrapMode", 1, conf, CONF_wrap_mode); gppi(sesskey, "LFImpliesCR", 0, conf, CONF_lfhascr);