From a2a36921945c4787b2737a671c788c50f1b25c4b Mon Sep 17 00:00:00 2001 From: Squibid Date: Thu, 11 Dec 2025 15:10:02 -0500 Subject: [PATCH] use another hack to fix our other hack --- src/main.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.zig b/src/main.zig index 0d6d727..5d96b5c 100644 --- a/src/main.zig +++ b/src/main.zig @@ -78,6 +78,9 @@ pub fn main() !void { remote.remote_lua.?.pushLua(@ptrCast(c[0..].ptr)); _ = remote.display.flush(); _ = remote.display.dispatch(); + const stdout = @constCast(&std.fs.File.stdout().writer(@constCast(&[_]u8{})).interface); + try stdout.writeAll("\r"); + try stdout.flush(); return; } else if (!options.options.@"follow-log") { input_thread = try .spawn(.{}, inputThreadRun, .{});