You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pane typing now sends 6-character chunks per tmux send-keys call instead of one call per character — ~6x fewer subprocess spawns. Measured: 0.664s -> 0.377s to type a 67-character command (avg of 5 runs).
AI engine model is now overridable via TS_CLAUDE_MODEL / TS_CODEX_MODEL env vars (unset by default, same behavior as before).
Fixed
tmux send-keys -l silently drops an unescaped ; when it is the last character of the argument. The old one-character-per-call typing loop dodged this by accident; batching into multi-character chunks exposed it. Now only a chunk-trailing ; gets the \; escape.