From 1e3187567020045d1edbc39b5af317048bbac744 Mon Sep 17 00:00:00 2001 From: Squibid Date: Sun, 30 Nov 2025 23:34:26 -0500 Subject: [PATCH] redirect stdout/stderr in remote lua states --- src/RemoteLua.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/RemoteLua.zig b/src/RemoteLua.zig index 15850c2..c8582aa 100644 --- a/src/RemoteLua.zig +++ b/src/RemoteLua.zig @@ -34,6 +34,7 @@ pub fn create(client: *wl.Client, version: u32, id: u32) !void { errdefer node.L.deinit(); node.L.openLibs(); Lua.openLibs(node.L); + // TODO: replace stdout and stderr with buffers we can send to the clients try server.remote_lua_clients.append(gpa, node);