diff --git a/src/stream.rs b/src/stream.rs index 1f9c910..100a9ca 100644 --- a/src/stream.rs +++ b/src/stream.rs @@ -172,6 +172,7 @@ impl Subscriber { fn build_vt(tty_size: TtySize) -> Vt { Vt::builder() .size(tty_size.0 as usize, tty_size.1 as usize) + .scrollback_limit(1000) .build() }