1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

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]
This commit is contained in:
Simon Tatham 2013-08-02 22:33:40 +00:00
parent 55e8a268ab
commit fd266a3cec

View File

@ -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);