From 418ddada23d290ab02417b62213b402a08f4d9b5 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 21 Jul 2026 07:12:49 +0000 Subject: [PATCH] Increase escape-time for tmux's own queries (refresh-client -l and window size) as well, GitHub issue 5388 from Jackson Edmonds. --- tty-keys.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tty-keys.c b/tty-keys.c index 61e541165..2d4454b6c 100644 --- a/tty-keys.c +++ b/tty-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-keys.c,v 1.210 2026/07/10 13:38:45 nicm Exp $ */ +/* $OpenBSD: tty-keys.c,v 1.211 2026/07/21 07:12:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -977,8 +977,9 @@ partial_key: if (delay < 500) delay = 500; } - if ((tty->flags & (TTY_WAITFG|TTY_WAITBG) || - (tty->flags & TTY_ALL_REQUEST_FLAGS) != TTY_ALL_REQUEST_FLAGS) || + if (tty->flags & (TTY_WAITFG|TTY_WAITBG) || + tty->flags & (TTY_OSC52QUERY|TTY_WINSIZEQUERY) || + (tty->flags & TTY_ALL_REQUEST_FLAGS) != TTY_ALL_REQUEST_FLAGS || !TAILQ_EMPTY(&c->input_requests)) { log_debug("%s: increasing delay (active query)", c->name); if (delay < 500)