(command: string)
| 11 | import { whichSync } from './which.js' |
| 12 | |
| 13 | function isCommandAvailable(command: string): boolean { |
| 14 | return !!whichSync(command) |
| 15 | } |
| 16 | |
| 17 | // GUI editors that open in a separate window and can be spawned detached |
| 18 | // without fighting the TUI for stdin. VS Code forks (cursor, windsurf, codium) |