mirror-ghostty/src/terminal/tmux.zig

14 lines
430 B
Zig

//! Types and functions related to tmux protocols.
const control = @import("tmux/control.zig");
const layout = @import("tmux/layout.zig");
pub const output = @import("tmux/output.zig");
pub const ControlParser = control.Parser;
pub const ControlNotification = control.Notification;
pub const Layout = layout.Layout;
pub const Viewer = @import("tmux/viewer.zig").Viewer;
test {
@import("std").testing.refAllDecls(@This());
}