(&self, home: &Path)
| 151 | } |
| 152 | |
| 153 | fn is_detected(&self, home: &Path) -> bool { |
| 154 | super::vscode_data_dir(home).join("User").is_dir() |
| 155 | || super::vscode_insiders_data_dir(home).join("User").is_dir() |
| 156 | || super::copilot_cli_dir(home).is_dir() |
| 157 | } |
| 158 | |
| 159 | fn primary_config_path(&self, home: &Path) -> Option<std::path::PathBuf> { |
| 160 | Some(super::vscode_data_dir(home).join("User/settings.json")) |
nothing calls this directly
no test coverage detected