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; }; }