Skip to content

Commit

Permalink
Increase scroll length
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevithakannan2 committed Oct 15, 2024
1 parent 79eb752 commit ed70a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tui/src/running_command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ impl RunningCommand {
// Process the buffer with a parser with the current screen size
// We don't actually need to create a new parser every time, but it is so much easier this
// way, and doesn't cost that much
let mut parser = vt100::Parser::new(size.height, size.width, 200);
let mut parser = vt100::Parser::new(size.height, size.width, 1000);
let mutex = self.buffer.lock();
let buffer = mutex.as_ref().unwrap();
parser.process(buffer);
Expand Down

0 comments on commit ed70a36

Please sign in to comment.