From: simon Date: Fri, 2 Aug 2013 22:33:40 +0000 (+0000) Subject: Raise the default scrollback from 200 to 2000 lines. The former was X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/8d90b8b27bf086da6245030459ab3e5977313eb0 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. git-svn-id: svn://svn.tartarus.org/sgt/putty@9982 cda61777-01e9-0310-a592-d414129be87e --- 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);