Remove the global Antigravity plugin hooks.
(&self)
| 712 | |
| 713 | /// Remove the global Antigravity plugin hooks. |
| 714 | pub fn uninstall_global(&self) -> AgentResult<()> { |
| 715 | let config_dir = match Self::global_config_dir() { |
| 716 | Some(dir) => dir, |
| 717 | None => return Ok(()), |
| 718 | }; |
| 719 | |
| 720 | Self::uninstall_from(&config_dir) |
| 721 | } |
| 722 | |
| 723 | /// Check if hooks are installed in the global plugin. |
| 724 | pub fn is_installed_global(&self) -> bool { |
no test coverage detected