()
| 212 | * This prevents showing the setup prompt again. |
| 213 | */ |
| 214 | export function markIt2SetupComplete(): void { |
| 215 | const config = getGlobalConfig() |
| 216 | if (config.iterm2It2SetupComplete !== true) { |
| 217 | saveGlobalConfig(current => ({ |
| 218 | ...current, |
| 219 | iterm2It2SetupComplete: true, |
| 220 | })) |
| 221 | logForDebugging('[it2Setup] Marked it2 setup as complete') |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Marks that the user prefers to use tmux over iTerm2 split panes. |
no test coverage detected