()
| 153 | * Fullscreen-specific — only reachable when NCODE_NO_FLICKER is active. |
| 154 | */ |
| 155 | export function isMouseClicksDisabled(): boolean { |
| 156 | return isEnvTruthy( |
| 157 | process.env.NCODE_DISABLE_MOUSE_CLICKS ?? |
| 158 | process.env.CLAUDE_CODE_DISABLE_MOUSE_CLICKS, |
| 159 | ) |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * True when the fullscreen alt-screen layout is actually rendering — |
no test coverage detected