Add xcode as editor (#518)

This commit is contained in:
Solomon
2025-08-19 11:42:52 +01:00
committed by GitHub
parent e5aa72e907
commit 01662fbd52
3 changed files with 6 additions and 2 deletions

View File

@@ -290,6 +290,7 @@ pub enum EditorType {
Windsurf,
IntelliJ,
Zed,
Xcode,
Custom,
}
@@ -323,6 +324,7 @@ impl EditorConfig {
EditorType::Windsurf => vec!["windsurf".to_string()],
EditorType::IntelliJ => vec!["idea".to_string()],
EditorType::Zed => vec!["zed".to_string()],
EditorType::Xcode => vec!["xed".to_string()],
EditorType::Custom => {
if let Some(custom) = &self.custom_command {
custom.split_whitespace().map(|s| s.to_string()).collect()