From 134327c1a3a7fed74b713034fb42eb495edcee23 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 30 Dec 2023 21:46:27 -0800 Subject: [PATCH] termio/exec: reorder member since we like alloc on top --- src/termio/Exec.zig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/termio/Exec.zig b/src/termio/Exec.zig index 15ed97b3f..df0b6cb36 100644 --- a/src/termio/Exec.zig +++ b/src/termio/Exec.zig @@ -38,17 +38,17 @@ const c = @cImport({ /// correct granularity of events. 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 alloc: Allocator, /// This is the pty fd created for the subcommand. 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" /// that manages input, grid updating, etc. and is renderer-agnostic. It /// just stores internal state about a grid.