Compare commits

...

2 Commits

Author SHA1 Message Date
JEEVITHA KANNAN K S
86db109bd8
Merge ed70a360c5 into e3688e9b3d 2024-10-24 23:17:38 -07:00
Jeevitha Kannan K S
ed70a360c5
Increase scroll length 2024-10-15 14:21:05 +05:30

View File

@ -253,7 +253,7 @@ impl RunningCommand {
// Process the buffer with a parser with the current screen size // 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 // 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 // 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 mutex = self.buffer.lock();
let buffer = mutex.as_ref().unwrap(); let buffer = mutex.as_ref().unwrap();
parser.process(buffer); parser.process(buffer);