aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-27 13:33:47 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-27 15:37:32 -0400
commitf88153f62b024d1c2ef82c5ac7ae9002e4fe2967 (patch)
treef5d9485a0e06072a22e8ae9e3a2089ee799ec948 /src/process.rs
parente74e5f1d2a1e091af214e39166b6a17d9052325c (diff)
downloadtokio-pty-process-stream-f88153f62b024d1c2ef82c5ac7ae9002e4fe2967.tar.gz
tokio-pty-process-stream-f88153f62b024d1c2ef82c5ac7ae9002e4fe2967.zip
add terminal resizing functionality
to keep the process's pty size in sync with the size of the user's terminal
Diffstat (limited to 'src/process.rs')
-rw-r--r--src/process.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/process.rs b/src/process.rs
index ed3344c..f5c76ed 100644
--- a/src/process.rs
+++ b/src/process.rs
@@ -20,6 +20,9 @@ pub enum Event {
/// Emitted when the command has exited.
CommandExit { status: std::process::ExitStatus },
+
+ /// Emitted by a `ResizingProcess` when a resize event happens
+ Resize { size: (u16, u16) },
}
struct State {
@@ -354,6 +357,7 @@ mod test {
assert!(status.success());
exited = true;
}
+ Event::Resize { .. } => {}
}
}
assert!(exited);