Skip to content

terminal-system v1.1.3

Choose a tag to compare

@fconidi fconidi released this 07 Sep 19:39
· 3 commits to main since this release

Changed

  • 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.