From c0ce4ef44f9de914de31d94d4ca13b69517e1b03 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 3 Dec 2025 22:31:25 +0100 Subject: [PATCH] Retain original fmt --- src/termio/shell_integration.zig | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/termio/shell_integration.zig b/src/termio/shell_integration.zig index b93f2ea31..fcbdaef6a 100644 --- a/src/termio/shell_integration.zig +++ b/src/termio/shell_integration.zig @@ -77,7 +77,14 @@ pub fn setup( return result; } -fn setupShell(alloc_arena: Allocator, resource_dir: []const u8, command: config.Command, env: *EnvMap, exe: []const u8, features: config.ShellIntegrationFeatures) !?ShellIntegration { +fn setupShell( + alloc_arena: Allocator, + resource_dir: []const u8, + command: config.Command, + env: *EnvMap, + exe: []const u8, + features: config.ShellIntegrationFeatures, +) !?ShellIntegration { if (std.mem.eql(u8, "bash", exe)) { // Apple distributes their own patched version of Bash 3.2 // on macOS that disables the ENV-based POSIX startup path.