A delightful TUI framework for Zig, inspired by Bubble Tea and Lipgloss.
- Elm Architecture - Model-Update-View pattern for predictable state management
- Rich Styling - Comprehensive styling system with colors, borders, padding, margin backgrounds, per-side border colors, tab width control, style ranges, full style inheritance, text transforms, whitespace formatting controls, and unset methods
- 19 Pre-built Components - TextInput (with autocomplete/word movement), TextArea, List (fuzzy filtering), Table (interactive with row selection), Viewport, Progress (color gradients), Spinner, Tree, StyledList, Sparkline, Notification/Toast, Confirm dialog, Modal/Popup, Tooltip, Help, Paginator, Timer, FilePicker, TabGroup (multi-view routing)
- Focus Management -
FocusGroupwith Tab/Shift+Tab cycling, comptime focusable protocol,FocusStylefor visual focus ring indicators - Keybinding Management - Structured
KeyBinding/KeyMapwith matching, display formatting, and Help component integration - Color System - ANSI 16, 256, and TrueColor with adaptive colors, color profile detection, and dark background detection
- Command System - Quit, tick, repeating tick (
every), batch, sequence, suspend/resume, runtime terminal control (mouse, cursor, alt screen, title), print above program, comprehensive image rendering - Image Rendering - Kitty/iTerm2/Sixel with in-memory data, file paths, image caching (transmit once, display many), z-index layering, unicode placeholders for text reflow, protocol override, and file validation
- Custom I/O - Pipe-friendly with configurable input/output streams for testing and automation
- Kitty Keyboard Protocol - Modern keyboard handling with key release events and unambiguous key identification
- Bracketed Paste - Paste events delivered as a single message instead of individual keystrokes
- Debug Logging - File-based timestamped logging since stdout is owned by the renderer
- Message Filtering - Intercept and transform messages before they reach your model
- ANSI Compression - Reduce output overhead with diff-based style state tracking and redundant sequence elimination
- Layout - Horizontal/vertical joining, ANSI-aware measurement, 2D placement, float-based positioning, horizontal/vertical single-axis placement, overlay compositing
- Cross-platform - Works on macOS, Linux, and Windows
- Zero Dependencies - Pure Zig with no external dependencies
Add ZigZag to your build.zig.zon:
.dependencies = .{
.zigzag = .{
.url = "https://github.com/meszmate/zigzag/archive/refs/heads/main.tar.gz",
.hash = "...",
},
},
// To pin a specific version instead:
// .url = "https://github.com/meszmate/zigzag/archive/refs/tags/v0.1.0.tar.gz",Then in your build.zig:
const zigzag = b.dependency("zigzag", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("zigzag", zigzag.module("zigzag"));const std = @import("std");
const zz = @import("zigzag");
const Model = struct {
count: i32,
pub const Msg = union(enum) {
key: zz.KeyEvent,
};
pub fn init(self: *Model, _: *zz.Context) zz.Cmd(Msg) {
self.* = .{ .count = 0 };
return .none;
}
pub fn update(self: *Model, msg: Msg, _: *zz.Context) zz.Cmd(Msg) {
switch (msg) {
.key => |k| switch (k.key) {
.char => |c| if (c == 'q') return .quit,
.up => self.count += 1,
.down => self.count -= 1,
else => {},
},
}
return .none;
}
pub fn view(self: *const Model, ctx: *const zz.Context) []const u8 {
const style = (zz.Style{}).bold(true).fg(zz.Color.cyan());
const text = std.fmt.allocPrint(ctx.allocator, "Count: {d}\n\nPress q to quit", .{self.count}) catch "Error";
return style.render(ctx.allocator, text) catch text;
}
};
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
defer _ = gpa.deinit();
var program = try zz.Program(Model).init(gpa.allocator());
defer program.deinit();
try program.run();
}ZigZag uses the Elm Architecture (Model-Update-View):
- Model - Your application state
- Msg - Messages that describe state changes
- init - Initialize your model
- update - Handle messages and update state
- view - Render your model to a string
Commands let you perform side effects:
return .quit; // Quit the application
return .none; // Do nothing
return .{ .tick = ns }; // Request a tick after `ns` nanoseconds
return Cmd(Msg).everyMs(16); // Repeating tick every 16ms (~60fps)
return Cmd(Msg).tickMs(1000); // One-shot tick after 1 second
return .suspend_process; // Suspend (like Ctrl+Z)
return .enable_mouse; // Enable mouse tracking at runtime
return .disable_mouse; // Disable mouse tracking
return .show_cursor; // Show terminal cursor
return .hide_cursor; // Hide terminal cursor
return .{ .set_title = "My App" }; // Set terminal window title
return .{ .println = "Log message" }; // Print above the program output
return .{ .image_file = .{ // Draw image via Kitty/iTerm2/Sixel when available
.path = "assets/cat.png",
.width_cells = 40,
.height_cells = 20,
.placement = .center, // .cursor, .top_left, .top_center, .center
.row_offset = -6, // Negative = higher, positive = lower
.col_offset = 0, // Negative = left, positive = right
// .row = 2, .col = 10, // Optional absolute position override
.move_cursor = false, // Helpful for iTerm2 placement
.protocol = .auto, // .auto, .kitty, .iterm2, .sixel
.z_index = -1, // Kitty: render behind text
.unicode_placeholder = false, // Kitty: participate in text reflow
} };
return .{ .image_data = .{ // Draw in-memory image data
.data = png_bytes, // Raw RGB, RGBA, or PNG bytes
.format = .png, // .rgb, .rgba, .png
.pixel_width = 100, // Required for RGB/RGBA
.pixel_height = 100,
.width_cells = 20,
.height_cells = 10,
.placement = .center,
} };
return .{ .cache_image = .{ // Upload to Kitty cache (transmit once)
.source = .{ .file = "assets/logo.png" },
.image_id = 1,
} };
return .{ .place_cached_image = .{ // Display cached image (no re-upload)
.image_id = 1,
.placement = .center,
.width_cells = 20,
.height_cells = 10,
} };
return .{ .delete_image = .{ .by_id = 1 } }; // Free cached image
return .{ .delete_image = .all }; // Free all cached imagesThe styling system is inspired by Lipgloss:
const style = (zz.Style{})
.bold(true)
.italic(true)
.fg(zz.Color.cyan())
.bg(zz.Color.black())
.paddingAll(1)
.marginAll(2)
.marginBackground(zz.Color.gray(3))
.borderAll(zz.Border.rounded)
.borderForeground(zz.Color.magenta())
.borderTopForeground(zz.Color.cyan()) // Per-side border colors
.borderBottomForeground(zz.Color.green())
.tabWidth(4)
.width(40)
.alignH(.center);
const output = try style.render(allocator, "Hello, World!");
// render() does not append an implicit trailing '\n'
// Text transforms
const upper_style = (zz.Style{}).transform(zz.transforms.uppercase);
const shouting = try upper_style.render(allocator, "hello"); // "HELLO"
// Inline mode is useful when embedding block-styled output in a single line
const inline = (zz.Style{}).fg(zz.Color.cyan()).inline_style(true);
// Whitespace formatting controls
const ws_style = (zz.Style{})
.underline(true)
.setUnderlineSpaces(true) // Underline extends through spaces
.setColorWhitespace(false); // Don't apply bg color to whitespace
// Unset individual properties
const derived = style.unsetBold().unsetPadding().unsetBorder();
// Style inheritance (unset values inherit from parent)
const child = (zz.Style{}).fg(zz.Color.red()).inherit(style);
// Style ranges - apply different styles to byte ranges
const ranges = &[_]zz.StyleRange{
.{ .start = 0, .end = 5, .s = (zz.Style{}).bold(true) },
};
const ranged = try zz.renderWithRanges(allocator, "Hello World", ranges);
// Highlight specific positions (for fuzzy match results)
const highlighted = try zz.renderWithHighlights(allocator, "hello", &.{0, 2}, highlight_style, base_style);// Basic ANSI colors
zz.Color.red()
zz.Color.cyan()
zz.Color.brightGreen()
// 256-color palette
zz.Color.color256(123)
zz.Color.gray(15) // 0-23 grayscale
// True color (24-bit)
zz.Color.fromRgb(255, 128, 64)
zz.Color.hex("#FF8040")
// Adaptive colors (change based on terminal capabilities)
const adaptive = zz.AdaptiveColor{
.true_color = zz.Color.hex("#FF8040"),
.color_256 = zz.Color.color256(208),
.ansi = zz.Color.red(),
};
const resolved = adaptive.resolve(ctx.true_color, ctx.color_256);
// Color profile detection (automatic via context)
// ctx.color_profile: .ascii, .ansi, .ansi256, .true_color
// ctx.is_dark_background: bool
// Color interpolation (for gradients)
const mid = zz.interpolateColor(zz.Color.red(), zz.Color.green(), 0.5);zz.Border.normal // ┌─┐
zz.Border.rounded // ╭─╮
zz.Border.double // ╔═╗
zz.Border.thick // ┏━┓
zz.Border.ascii // +-+
zz.Border.block // ███
zz.Border.dashed // ┌╌┐
zz.Border.dotted // ┌┈┐
zz.Border.inner_half_block // ▗▄▖
zz.Border.outer_half_block // ▛▀▜
zz.Border.markdown // |-|Single-line text input with cursor, validation, autocomplete, and word-level movement:
var input = zz.TextInput.init(allocator);
input.setPlaceholder("Enter name...");
input.setPrompt("> ");
input.setSuggestions(&.{ "hello", "help", "world" }); // Tab to accept
// Supports: Alt+Left/Right for word movement, Ctrl+W delete word
input.handleKey(key_event);
const view = try input.view(allocator);Multi-line text editor:
var editor = zz.components.TextArea.init(allocator);
editor.setSize(80, 24);
editor.line_numbers = true;
editor.handleKey(key_event);Selectable list with fuzzy filtering and status bar:
var list = zz.List(MyItem).init(allocator);
list.multi_select = true;
list.show_item_count = true; // Shows "3/10 items"
try list.addItem(.init(item, "Item 1"));
// Fuzzy filtering: press / to filter, matches score by consecutive chars
list.handleKey(key_event);Scrollable content area:
var viewport = zz.Viewport.init(allocator, 80, 24);
try viewport.setContent(long_text);
viewport.handleKey(key_event); // Supports j/k, Page Up/Down, etc.Progress bar with optional color gradients:
var progress = zz.Progress.init();
progress.setWidth(40);
progress.setGradient(zz.Color.hex("#FF6B6B"), zz.Color.hex("#4ECDC4"));
progress.setPercent(75);
const bar = try progress.view(allocator);Animated loading indicator:
var spinner = zz.Spinner.init();
spinner.update(elapsed_ns);
const view = try spinner.viewWithTitle(allocator, "Loading...");Interactive tabular data display with row selection and navigation:
var table = zz.Table(3).init(allocator);
table.setHeaders(.{ "Name", "Age", "City" });
try table.addRow(.{ "Alice", "30", "NYC" });
try table.addRow(.{ "Bob", "25", "LA" });
table.focus(); // Enable interactive mode
table.show_row_borders = true; // Horizontal separators between rows
// Supports: j/k, up/down, pgup/pgdown, g/G for navigation
table.handleKey(key_event);
const selected = table.selectedRow(); // Get highlighted row indexHierarchical tree view with customizable enumerators:
var tree = zz.Tree(void).init(allocator);
const root = try tree.addRoot({}, "project/");
const src = try tree.addChild(root, {}, "src/");
_ = try tree.addChild(src, {}, "main.zig");
const view = try tree.view(allocator);
// Output:
// project/
// └── src/
// └── main.zigRendering list with enumerators (bullet, arabic, roman, alphabet):
var list = zz.StyledList.init(allocator);
list.setEnumerator(.roman);
try list.addItem("First item");
try list.addItem("Second item");
try list.addItemNested("Sub-item", 1);
// Output:
// I. First item
// II. Second item
// I. Sub-itemMini chart using Unicode block elements:
var spark = zz.Sparkline.init(allocator);
spark.setWidth(20);
try spark.push(10.0);
try spark.push(25.0);
try spark.push(15.0);
const chart = try spark.view(allocator);Auto-dismissing timed messages with severity levels:
var notifs = zz.Notification.init(allocator);
try notifs.push("Build complete!", .success, 3000, current_ns);
notifs.update(current_ns); // Removes expired notifications
const view = try notifs.view(allocator);Simple yes/no confirmation dialog:
var confirm = zz.Confirm.init("Are you sure?");
confirm.show();
confirm.handleKey(key_event); // Left/Right, Enter, y/n
if (confirm.result()) |yes| {
if (yes) { /* confirmed */ }
}Dialog overlay with buttons, backdrop, and focus support:
var modal = zz.Modal.info("Notice", "Operation completed successfully.");
modal.show();
// In update:
modal.handleKey(key_event);
if (modal.getResult()) |res| {
switch (res) {
.button_pressed => |idx| { /* button at idx was pressed */ },
.dismissed => { /* user pressed Escape */ },
}
}
// In view:
if (modal.isVisible()) {
return modal.viewWithBackdrop(allocator, ctx.width, ctx.height);
}Presets: Modal.info(), Modal.confirm(), Modal.warning(), Modal.err(), or Modal.init() for full custom.
Contextual hint positioned near a target element with cell-based overlay compositing:
var tip = zz.Tooltip.init("Save the current document");
tip.target_x = 10;
tip.target_y = 5;
tip.placement = .bottom; // .top, .bottom, .left, .right
tip.show();
// In view — overlays onto existing content:
if (tip.isVisible()) {
return tip.overlay(allocator, base_view, ctx.width, ctx.height);
}Presets: Tooltip.init(text), Tooltip.titled(title, text), Tooltip.help(text), Tooltip.shortcut(label, key). Supports border_bg, arrow_bg, content_bg, and inherit_bg for full background control.
Multi-screen tab navigation with fully customizable keymaps, styles, and optional per-tab route callbacks:
var tabs = zz.TabGroup.init(allocator);
defer tabs.deinit();
tabs.show_numbers = true;
tabs.max_width = 60; // overflow-aware tab strip
tabs.overflow_mode = .scroll; // .none, .clip, .scroll
tabs.activate_on_focus = true; // set false for manual activation
_ = try tabs.addTab(.{ .id = "home", .title = "Home" });
_ = try tabs.addTab(.{ .id = "logs", .title = "Logs", .enabled = false });
_ = try tabs.addTab(.{ .id = "settings", .title = "Settings" });
// In update:
const result = tabs.handleKey(key_event); // Left/Right, Home/End, 1..9 by default
_ = result.change; // optional active-tab change info
// Optional: route unconsumed keys to active tab callback
const routed = tabs.handleKeyAndRoute(key_event).routed;
_ = routed;
// In view:
const strip = try tabs.view(allocator);
const with_content = try tabs.viewWithContent(allocator, "No active tab");Per-tab route callback hooks: render_fn, key_fn, on_enter_fn, on_leave_fn.
- Help - Display key bindings with responsive truncation
- Paginator - Pagination controls
- Timer - Countdown/stopwatch with warning thresholds
- FilePicker - File system navigation
Structured key binding definitions with matching and Help integration:
var keymap = zz.KeyMap.init(allocator);
defer keymap.deinit();
try keymap.addChar('q', "Quit");
try keymap.addCtrl('s', "Save");
try keymap.add(.{
.key_event = zz.KeyEvent{ .key = .up },
.description = "Move up",
.short_desc = "up",
});
// Check if a key event matches any binding
if (keymap.match(key_event)) |binding| {
// Handle the matched binding
_ = binding.description;
}
// Generate help text from keybindings
var help = try zz.components.Help.fromKeyMap(allocator, &keymap);
defer help.deinit();
const help_view = try help.view(allocator);Manage Tab/Shift+Tab cycling between interactive components with FocusGroup:
const Model = struct {
name: zz.TextInput,
email: zz.TextInput,
focus: zz.FocusGroup(2),
focus_style: zz.FocusStyle,
pub fn init(self: *Model, ctx: *zz.Context) zz.Cmd(Msg) {
self.name = zz.TextInput.init(ctx.persistent_allocator);
self.email = zz.TextInput.init(ctx.persistent_allocator);
self.focus = .{};
self.focus.add(&self.name); // index 0
self.focus.add(&self.email); // index 1
self.focus.initFocus(); // focus first, blur rest
self.focus_style = .{}; // cyan/gray borders by default
return .none;
}
pub fn update(self: *Model, msg: Msg, _: *zz.Context) zz.Cmd(Msg) {
switch (msg) {
.key => |k| {
// Tab/Shift+Tab cycles focus (returns true if consumed)
if (self.focus.handleKey(k)) return .none;
// Forward to all — unfocused components auto-ignore
self.name.handleKey(k);
self.email.handleKey(k);
},
}
return .none;
}
pub fn view(self: *const Model, ctx: *const zz.Context) []const u8 {
// Apply focus ring (border color changes based on focus)
var style = zz.Style{};
style = style.paddingAll(1);
const name_style = self.focus_style.apply(style, self.focus.isFocused(0));
const email_style = self.focus_style.apply(style, self.focus.isFocused(1));
// ... render with styled boxes ...
}
};Any component with focused: bool, focus(), and blur() methods works with FocusGroup.
Built-in focusable components: TextInput, TextArea, Table, List, Confirm, FilePicker.
By default Tab moves forward and Shift+Tab moves backward. Add or replace bindings freely:
// Add arrow keys and vim j/k alongside the default Tab
fg.addNextKey(.{ .key = .down }); // Down arrow
fg.addNextKey(.{ .key = .{ .char = 'j' } }); // vim j
fg.addPrevKey(.{ .key = .up }); // Up arrow
fg.addPrevKey(.{ .key = .{ .char = 'k' } }); // vim k
// Or replace defaults entirely
fg.setNextKey(.{ .key = .down }); // Down only, Tab no longer works
fg.setPrevKey(.{ .key = .up }); // Up only
// Clear all bindings (manual-only via focusNext/focusPrev)
fg.clearNextKeys();
fg.clearPrevKeys();
// Modifier keys work too
fg.addNextKey(.{ .key = .{ .char = 'n' }, .modifiers = .{ .ctrl = true } }); // Ctrl+NUp to 4 bindings per direction. Modifier matching is exact (Ctrl+Tab won't match a plain Tab binding).
fg.focusAt(2); // Focus specific index
fg.focusNext(); // Manual next
fg.focusPrev(); // Manual prev
fg.blurAll(); // Remove focus from all
fg.focused(); // Get current index
fg.isFocused(1); // Check if index is focused
fg.len(); // Number of registered items
// Disable wrapping (stop at ends instead of cycling)
var fg: zz.FocusGroup(3) = .{ .wrap = false };
// Custom focus ring colors
const fs = zz.FocusStyle{
.focused_border_fg = zz.Color.green(),
.blurred_border_fg = zz.Color.gray(8),
.border_chars = zz.Border.double,
};Configure the program with custom options:
var program = try zz.Program(Model).initWithOptions(gpa.allocator(), .{
.fps = 60, // Target frame rate
.alt_screen = true, // Use alternate screen buffer
.mouse = false, // Enable mouse tracking
.cursor = false, // Show cursor
.bracketed_paste = true, // Enable bracketed paste mode
.kitty_keyboard = false, // Enable Kitty keyboard protocol
.unicode_width_strategy = null, // null=auto, .legacy_wcwidth, .unicode
.suspend_enabled = true, // Enable Ctrl+Z suspend/resume
.title = "My App", // Window title
.log_file = "debug.log", // Debug log file path
.input = custom_stdin, // Custom input (for testing/piping)
.output = custom_stdout, // Custom output (for testing/piping)
});Unicode width strategy can also be overridden per-process with ZZ_UNICODE_WIDTH=auto|legacy|unicode.
By default (null/auto), ZigZag:
- probes DEC mode
2027and enables it when available, - probes kitty text-sizing support,
- applies terminal/multiplexer heuristics (e.g. tmux/screen/zellij favor legacy width).
ctx.allocator is a frame allocator that is reset before each tick().
Use it for temporary values (render strings, per-frame buffers).
For model state that must live across frames, allocate with ctx.persistent_allocator.
For applications that need to do other work between frames (network polling, background processing, etc.), use start() + tick() instead of run():
var program = try zz.Program(Model).init(gpa.allocator());
defer program.deinit();
try program.start();
while (program.isRunning()) {
try program.tick();
// poll sockets, process jobs, etc.
}Since stdout is owned by the renderer, use file-based logging:
// In your update function, log via context:
pub fn update(self: *Model, msg: Msg, ctx: *zz.Context) zz.Cmd(Msg) {
ctx.log("received key: {s}", .{@tagName(msg)});
// ...
}Intercept and transform messages before they reach your model:
var program = try zz.Program(Model).init(gpa.allocator());
program.setFilter(&myFilter);
fn myFilter(msg: Model.Msg) ?Model.Msg {
// Return null to drop the message, or modify it
return msg;
}Handle pasted text as a single event by adding a paste field to your Msg:
pub const Msg = union(enum) {
key: zz.KeyEvent,
paste: []const u8, // Receives full pasted text
};Ctrl+Z support is enabled by default. Handle resume events by adding a resumed field:
pub const Msg = union(enum) {
key: zz.KeyEvent,
resumed: void, // Sent after process resumes from Ctrl+Z
};Image commands are automatically no-ops on unsupported terminals. All draw* functions return bool indicating success.
// Draw from file (auto-selects best protocol)
if (ctx.supportsImages()) {
_ = try ctx.drawImageFromFile("assets/cat.png", .{
.width_cells = 40,
.height_cells = 20,
});
}
// Draw from file with specific protocol
_ = try ctx.drawImageFromFileWithProtocol("assets/cat.png", .{
.width_cells = 40,
.z_index = -1, // Behind text (Kitty only)
}, .kitty);Render raw pixels or PNG bytes directly from memory, without writing to disk:
// Draw PNG bytes from memory
_ = try ctx.drawImageData(png_bytes, .{
.format = .png,
.width_cells = 20,
.height_cells = 10,
});
// Draw raw RGBA pixels
_ = try ctx.drawImageData(rgba_pixels, .{
.format = .rgba,
.pixel_width = 100, // Required for RGB/RGBA
.pixel_height = 100,
.width_cells = 20,
});Transmit an image once, display it many times without re-uploading:
// Upload to cache (no display)
_ = try ctx.transmitKittyImageFromFile("assets/logo.png", .{
.image_id = 1,
});
// Display cached image at different positions
_ = try ctx.placeKittyImage(.{
.image_id = 1,
.width_cells = 10,
.height_cells = 5,
});
// Clean up when done
_ = try ctx.deleteKittyImage(.{ .by_id = 1 });
_ = try ctx.deleteKittyImage(.all); // Delete everything// Render image behind text
_ = try ctx.drawKittyImageFromFile("assets/bg.png", .{
.z_index = -1, // Negative = behind text
.unicode_placeholder = true, // Image participates in text reflow/scrolling
});Force a specific protocol instead of auto-selection (Kitty > iTerm2 > Sixel):
_ = try ctx.drawImageFromFileWithProtocol("image.png", .{}, .iterm2);
_ = try ctx.drawImageDataWithProtocol(data, .{ .format = .png }, .sixel);const caps = ctx.getImageCapabilities();
// caps.kitty_graphics: bool
// caps.iterm2_inline_image: bool
// caps.sixel: bool
if (ctx.supportsKittyGraphics()) { /* ... */ }
if (ctx.supportsIterm2InlineImages()) { /* ... */ }
if (ctx.supportsSixel()) { /* ... */ }All image operations are also available as commands from update():
// File image with all options
return .{ .image_file = .{
.path = "assets/cat.png",
.placement = .center,
.width_cells = 40,
.protocol = .auto, // .auto, .kitty, .iterm2, .sixel
.z_index = -1, // Behind text (Kitty)
.unicode_placeholder = true, // Text reflow (Kitty)
} };
// In-memory data
return .{ .image_data = .{
.data = png_bytes,
.format = .png, // .rgb, .rgba, .png
.width_cells = 20,
} };
// Cache + place workflow
return .{ .batch = &.{
.{ .cache_image = .{ .source = .{ .file = "logo.png" }, .image_id = 1 } },
.{ .place_cached_image = .{ .image_id = 1, .placement = .center } },
} };
// Delete cached images
return .{ .delete_image = .{ .by_id = 1 } };
return .{ .delete_image = .all };Detection combines runtime protocol probes with terminal feature/env hints:
- Kitty graphics: Kitty query command (
a=q) for confirmation. - iTerm2 inline images:
OSC 1337;Capabilities/TERM_FEATURESwhen available. - Sixel: iTerm/WezTerm
TERM_FEATURES(Sx) and primary device attributes (CSI c, param4).
Common terminals supported by default:
- Kitty and Ghostty via Kitty graphics protocol.
- iTerm2 and WezTerm via
OSC 1337inline images. - Sixel-capable terminals (for example xterm with Sixel, mlterm, contour).
- File paths are validated before sending; missing files return
falseinstead of erroring. - For iTerm2, large images (>750KB encoded) are sent with multipart
OSC 1337sequences automatically. - For Sixel, provide a
.sixel/.sixfile or a regular image withimg2sixelinPATH. Optional-w/-hpixel hints are passed through. - Inside multiplexers (tmux/screen/zellij), image passthrough depends on multiplexer configuration.
- Image caching, z-index, and unicode placeholders are Kitty-specific features; they are silently ignored on other protocols.
Combine multiple strings:
// Horizontal (side by side)
const row = try zz.joinHorizontal(allocator, &.{ left, middle, right });
// Vertical (stacked)
const col = try zz.joinVertical(allocator, &.{ top, middle, bottom });Get text dimensions (ANSI-aware):
const w = zz.width("Hello"); // 5
const h = zz.height("Line 1\nLine 2"); // 2Position content in a bounding box:
// 2D placement in a bounding box
const centered = try zz.place.place(allocator, 80, 24, .center, .middle, content);
// Single-axis horizontal placement
const right_aligned = try zz.placeHorizontal(allocator, 80, .right, content);
// Single-axis vertical placement
const bottom_aligned = try zz.placeVertical(allocator, 24, .bottom, content);
// Float-based positioning (0.0 = left/top, 0.5 = center, 1.0 = right/bottom)
const placed = try zz.placeFloat(allocator, 80, 24, 0.75, 0.25, content);Run the examples:
zig build run-hello_world
zig build run-counter
zig build run-todo_list
zig build run-text_editor
zig build run-file_browser
zig build run-dashboard
zig build run-showcase # Multi-tab demo of all features
zig build run-focus_form # Focus management with Tab cycling
zig build run-tabs # TabGroup multi-screen routing# Build the library
zig build
# Run tests
zig build test
# Build with optimizations
zig build -Doptimize=ReleaseFastzig build -Dtarget=x86_64-linux
zig build -Dtarget=aarch64-macos
zig build -Dtarget=x86_64-windowsContributions are welcome! Please see CONTRIBUTING.md for guidelines.
MIT License - see LICENSE file for details.
- Bubble Tea - The original Go TUI framework
- Lipgloss - Style definitions for terminal applications
- The Elm Architecture - The pattern that inspired it all
