From 0ccaf3d5d61697672664601e0d87e681f0c97ef3 Mon Sep 17 00:00:00 2001 From: Caleb Spare Date: Sat, 28 Feb 2026 23:35:28 -0800 Subject: [PATCH] Clear key state overlay on "ignore" action --- src/Surface.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Surface.zig b/src/Surface.zig index b9dbefa1b..7b67a52ce 100644 --- a/src/Surface.zig +++ b/src/Surface.zig @@ -2973,6 +2973,9 @@ fn maybeHandleBinding( // If our action was "ignore" then we return the special input // effect of "ignored". for (actions) |action| if (action == .ignore) { + // If we're in a sequence, clear it. + self.endKeySequence(.drop, .retain); + return .ignored; }; }