()
| 133 | * When null, Shell.ts does not override TMUX, preserving user's environment. |
| 134 | */ |
| 135 | export function getClaudeTmuxEnv(): string | null { |
| 136 | if (!socketPath || serverPid === null) { |
| 137 | return null |
| 138 | } |
| 139 | return `${socketPath},${serverPid},0` |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Checks if tmux is available on this system. |
no outgoing calls
no test coverage detected