repos / zmx

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

commit
08b33dc
parent
595690f
author
Eric Bower
date
2026-02-19 20:09:09 -0500 EST
chore(wait): add `w` alias
1 files changed,  +1, -1
M src/main.zig
+1, -1
1@@ -471,7 +471,7 @@ pub fn main() !void {
2         daemon.socket_path = try getSocketPath(alloc, cfg.socket_dir, sesh);
3         std.log.info("socket path={s}", .{daemon.socket_path});
4         return run(&daemon, cmd_args.items);
5-    } else if (std.mem.eql(u8, cmd, "wait")) {
6+    } else if (std.mem.eql(u8, cmd, "wait") or std.mem.eql(u8, cmd, "w")) {
7         var args_raw: std.ArrayList([]const u8) = .empty;
8         defer {
9             args_raw.deinit(alloc);