(&self, ctx: &InstallContext, project_path: &Path)
| 53 | } |
| 54 | |
| 55 | fn install_local(&self, ctx: &InstallContext, project_path: &Path) -> Result<()> { |
| 56 | install_cursor_plugin(&ctx.home, &ctx.tracedecay_bin)?; |
| 57 | sweep_legacy_project_artifacts(project_path)?; |
| 58 | |
| 59 | eprintln!(); |
| 60 | eprintln!("Cursor local setup uses the tracedecay Cursor plugin."); |
| 61 | eprintln!("Reload Cursor so the plugin loads for this workspace."); |
| 62 | Ok(()) |
| 63 | } |
| 64 | |
| 65 | fn post_install<'a>( |
| 66 | &'a self, |
nothing calls this directly
no test coverage detected