ghostty/src/terminal/kitty.zig
2024-08-16 10:32:43 -07:00

13 lines
311 B
Zig

//! Types and functions related to Kitty protocols.
const key = @import("kitty/key.zig");
pub const graphics = @import("kitty/graphics.zig");
pub const KeyFlags = key.Flags;
pub const KeyFlagStack = key.FlagStack;
pub const KeySetMode = key.SetMode;
test {
@import("std").testing.refAllDecls(@This());
}