isWindsurfInstalled method
Check if Windsurf IDE is installed.
Implementation
Future<bool> isWindsurfInstalled() async {
try {
final result = await Process.run('windsurf', ['--version']);
return result.exitCode == 0;
} catch (_) {
return false;
}
}