repos / zmx

session persistence for terminal processes
git clone https://github.com/neurosnap/zmx.git

commit
be3b0ab
parent
e3a2063
author
Eric Bower
date
2025-10-14 14:53:37 -0400 EDT
chore: fmt
1 files changed,  +1, -1
M src/daemon.zig
+1, -1
1@@ -917,7 +917,7 @@ fn renderTerminalSnapshot(session: *Session, allocator: std.mem.Allocator) ![]u8
2     try output.appendSlice(allocator, "\x1b[2J\x1b[H"); // Clear and home
3 
4     // Step 2: Print terminal content
5-    const content = try session.vt.plainStringUnwrapped(allocator);
6+    const content = try session.vt.plainString(allocator);
7     defer allocator.free(content);
8     try output.appendSlice(allocator, content);
9