From 68a2008b340959b2a94f27f37ca98257109f6396 Mon Sep 17 00:00:00 2001 From: phl Date: Sun, 16 Aug 2026 20:16:31 +0200 Subject: [PATCH] fix: format --- src/config/Config.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 0e1f44b30..ac854616c 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -9995,11 +9995,11 @@ pub const Theme = struct { /// Expand tilde paths in light/dark theme values. pub fn finalize(self: *Theme, alloc: Allocator) Allocator.Error!void { var buf: [std.fs.max_path_bytes]u8 = undefined; - + const light = expandHome(self.light, &buf); if (!std.mem.eql(u8, light, self.light)) self.light = try alloc.dupeZ(u8, light); - + const dark = expandHome(self.dark, &buf); if (!std.mem.eql(u8, dark, self.dark)) self.dark = try alloc.dupeZ(u8, dark);