Merge pull request #836 from gene1wood/increase-scrollback-history
Set scrolling_history to 100,000
This commit is contained in:
commit
9eafd070bb
1 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue