Skip to main content

gpui_libghostty/
lib.rs

1//! Native libghostty terminal component for GPUI.
2//!
3//! The renderer currently uses Ghostty's macOS Metal surface API. Other targets
4//! compile, but [`Terminal::spawn`] returns an unsupported-platform error.
5
6mod native;
7mod terminal;
8
9pub use terminal::{Terminal, TerminalOptions};