From 472c85eb7963905df77fcabce01981cfa52a2f24 Mon Sep 17 00:00:00 2001 From: Jeevitha Kannan K S Date: Fri, 8 Nov 2024 00:38:20 +0530 Subject: [PATCH] Increase scroll length (#830) --- tui/src/running_command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/src/running_command.rs b/tui/src/running_command.rs index af642d0f..798c67c0 100644 --- a/tui/src/running_command.rs +++ b/tui/src/running_command.rs @@ -255,7 +255,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);