mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-28 18:23:56 +00:00
Start pulling out IO thread and IO implementation
This commit is contained in:
13
src/termio/Options.zig
Normal file
13
src/termio/Options.zig
Normal file
@@ -0,0 +1,13 @@
|
||||
//! The options that are used to configure a terminal IO implementation.
|
||||
|
||||
const renderer = @import("../renderer.zig");
|
||||
const Config = @import("../config.zig").Config;
|
||||
|
||||
/// The size of the terminal grid.
|
||||
grid_size: renderer.GridSize,
|
||||
|
||||
/// The size of the viewport in pixels.
|
||||
screen_size: renderer.ScreenSize,
|
||||
|
||||
/// The app configuration.
|
||||
config: *const Config,
|
||||
Reference in New Issue
Block a user