mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-23 04:06:13 +03:00
15 lines
450 B
Zig
15 lines
450 B
Zig
//! Kitty graphics protocol support.
|
|
//!
|
|
//! Documentation:
|
|
//! https://sw.kovidgoyal.net/kitty/graphics-protocol
|
|
//!
|
|
//! Unimplemented features that are still todo:
|
|
//! - shared memory transmit
|
|
//! - virtual placement w/ unicode
|
|
//! - animation
|
|
|
|
pub usingnamespace @import("graphics_command.zig");
|
|
pub usingnamespace @import("graphics_exec.zig");
|
|
pub usingnamespace @import("graphics_image.zig");
|
|
pub usingnamespace @import("graphics_storage.zig");
|