mod: update zig version
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 43s

This commit is contained in:
2025-02-19 22:55:03 +01:00
parent cc831a5cdf
commit 9322785ca0

View File

@@ -48,7 +48,7 @@ pub const InputField = struct {
this.queue.push(.{ .send = try this.input.toOwnedSlice() });
if (key.eql(.{ .cp = zterm.input.Backspace }) or key.eql(.{ .cp = zterm.input.Delete }) or key.eql(.{ .cp = zterm.input.KpDelete }))
_ = this.input.popOrNull();
_ = this.input.pop();
},
else => {},
}