ref(key): make Key struct packed and rename constants
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 2m5s

This commit is contained in:
2025-02-17 21:06:15 +01:00
parent 7891af6c6f
commit a9f48bfb6a
8 changed files with 207 additions and 212 deletions

View File

@@ -4,7 +4,7 @@ const std = @import("std");
const terminal = @import("terminal.zig");
const Size = @import("size.zig").Size;
const Key = @import("key.zig");
const Key = @import("key.zig").Key;
/// System events available to every `zterm.App`
pub const SystemEvent = union(enum) {