aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shell.rs')
-rw-r--r--examples/shell.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/shell.rs b/examples/shell.rs
index 682c008..2cd7ba2 100644
--- a/examples/shell.rs
+++ b/examples/shell.rs
@@ -15,6 +15,7 @@ fn main() {
&args,
input::evented_stdin::Stdin::new(),
);
+ let process = tokio_pty_process_stream::ResizingProcess::new(process);
let _raw = crossterm::RawScreen::into_raw_mode().unwrap();
tokio::run(
@@ -33,6 +34,7 @@ fn main() {
tokio_pty_process_stream::Event::CommandExit {
..
} => {}
+ tokio_pty_process_stream::Event::Resize { .. } => {}
}
futures::future::ok(())
})