Merge pull request #836 from gene1wood/increase-scrollback-history

Set scrolling_history to 100,000
This commit is contained in:
Jeremy Soller 2026-06-01 07:42:39 -06:00 committed by GitHub
commit 9eafd070bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -186,7 +186,10 @@ fn main() -> Result<(), Box<dyn Error>> {
});
// 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
tty::setup_env();
// Override TERM for better compatibility