mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-07-28 03:26:28 +00:00
16 lines
458 B
Zig
16 lines
458 B
Zig
//! Types and functions related to Kitty protocols.
|
|
|
|
const build_options = @import("terminal_options");
|
|
|
|
const key = @import("kitty/key.zig");
|
|
pub const color = @import("kitty/color.zig");
|
|
pub const graphics = if (build_options.kitty_graphics) @import("kitty/graphics.zig") else struct {};
|
|
|
|
pub const KeyFlags = key.Flags;
|
|
pub const KeyFlagStack = key.FlagStack;
|
|
pub const KeySetMode = key.SetMode;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|