From 1936ef7feecd865188094fe459f02ffdc7584ba2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 18 Sep 2024 12:13:43 -0700 Subject: [PATCH] termio: increase termios poller to 200ms --- src/termio/Exec.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/termio/Exec.zig b/src/termio/Exec.zig index 6efee0bde..ed55e301b 100644 --- a/src/termio/Exec.zig +++ b/src/termio/Exec.zig @@ -29,7 +29,7 @@ const windows = internal_os.windows; const log = std.log.scoped(.io_exec); /// The termios poll rate in milliseconds. -const TERMIOS_POLL_MS = 500; +const TERMIOS_POLL_MS = 200; /// The subprocess state for our exec backend. subprocess: Subprocess,