From 547df01c21955d00dd6cb4ddd3ac92f0e0c707bc Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 16 May 2026 04:00:02 +0200 Subject: [PATCH] fix: spawn sessions at 80x24 default (smaller mismatch before iOS resize arrives) --- extensions/remote-control/tmux/manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/remote-control/tmux/manager.ts b/extensions/remote-control/tmux/manager.ts index 9f27931..b78d9a4 100644 --- a/extensions/remote-control/tmux/manager.ts +++ b/extensions/remote-control/tmux/manager.ts @@ -58,7 +58,7 @@ export async function spawnSession(opts: { command?: string; }): Promise { await checkTmuxVersion(); - const { name, width = 120, height = 40, command = "" } = opts; + const { name, width = 80, height = 24, command = "" } = opts; // Set default-terminal globally so programs inside tmux get xterm-256color // and emit the escape sequences that SwiftTerm / xterm-compatible clients expect.