mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
termio/exec: reorder member since we like alloc on top
This commit is contained in:
@ -38,17 +38,17 @@ const c = @cImport({
|
|||||||
/// correct granularity of events.
|
/// correct granularity of events.
|
||||||
const disable_kitty_keyboard_protocol = apprt.runtime == apprt.glfw;
|
const disable_kitty_keyboard_protocol = apprt.runtime == apprt.glfw;
|
||||||
|
|
||||||
/// The number of milliseconds below which we consider a process
|
|
||||||
/// exit to be abnormal. This is used to show an error message
|
|
||||||
/// when the process exits too quickly.
|
|
||||||
abnormal_runtime_threshold_ms: u32,
|
|
||||||
|
|
||||||
/// Allocator
|
/// Allocator
|
||||||
alloc: Allocator,
|
alloc: Allocator,
|
||||||
|
|
||||||
/// This is the pty fd created for the subcommand.
|
/// This is the pty fd created for the subcommand.
|
||||||
subprocess: Subprocess,
|
subprocess: Subprocess,
|
||||||
|
|
||||||
|
/// The number of milliseconds below which we consider a process
|
||||||
|
/// exit to be abnormal. This is used to show an error message
|
||||||
|
/// when the process exits too quickly.
|
||||||
|
abnormal_runtime_threshold_ms: u32,
|
||||||
|
|
||||||
/// The terminal emulator internal state. This is the abstract "terminal"
|
/// The terminal emulator internal state. This is the abstract "terminal"
|
||||||
/// that manages input, grid updating, etc. and is renderer-agnostic. It
|
/// that manages input, grid updating, etc. and is renderer-agnostic. It
|
||||||
/// just stores internal state about a grid.
|
/// just stores internal state about a grid.
|
||||||
|
Reference in New Issue
Block a user