mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-22 11:46:11 +03:00
14 lines
532 B
Zig
14 lines
532 B
Zig
//! Package terminfo provides functionality related to terminfo/termcap files.
|
|
//!
|
|
//! At the time of writing this comment, the focus is on generating terminfo
|
|
//! files so that we can maintain our terminfo in Zig instead of hand-writing
|
|
//! the archaic (imo) terminfo format by hand. But eventually we may want to
|
|
//! extract this into a more full-featured library on its own.
|
|
|
|
pub const ghostty = @import("ghostty.zig").ghostty;
|
|
pub const Source = @import("Source.zig");
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|