blob: 0868a77103b83d91d6a0a5a910e622bdc74f07d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! 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());
}
|