Set scrolling_history to 100,000

Relates to #684
This commit is contained in:
Gene Wood 2026-05-29 11:02:10 -07:00
parent 67938814b6
commit ee25528ad9
No known key found for this signature in database
GPG key ID: F0A9E7DCD39E452E

View file

@ -186,7 +186,10 @@ fn main() -> Result<(), Box<dyn Error>> {
}); });
// Terminal config setup // Terminal config setup
let term_config = term::Config::default(); let term_config = term::Config {
scrolling_history: 100_000,
..term::Config::default()
};
// Set up environmental variables for terminal // Set up environmental variables for terminal
tty::setup_env(); tty::setup_env();
// Override TERM for better compatibility // Override TERM for better compatibility