From 49ed868d6a98e4bede7fbda7e566067972cc20b7 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Fri, 11 Sep 2026 09:31:26 +0200 Subject: [PATCH] WIP Fix tcell regression --- vendor/github.com/gdamore/tcell/v3/input.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/github.com/gdamore/tcell/v3/input.go b/vendor/github.com/gdamore/tcell/v3/input.go index 0c279f998..fcfcbf601 100644 --- a/vendor/github.com/gdamore/tcell/v3/input.go +++ b/vendor/github.com/gdamore/tcell/v3/input.go @@ -149,7 +149,7 @@ func (ip *inputParser) waitDuration() time.Duration { if ip.state == istInit { return 0 } - if ip.state == istEsc && ip.legacy { + if ip.state == istEsc { return loneEscapeTimeout } return escapeSequenceTimeout