(&self)
| 283 | } |
| 284 | |
| 285 | fn workspace_path_buf(&self) -> std::path::PathBuf { |
| 286 | self.workspace() |
| 287 | .map(std::path::PathBuf::from) |
| 288 | .or_else(|| std::env::current_dir().ok()) |
| 289 | .unwrap_or_else(|| std::path::PathBuf::from(".")) |
| 290 | } |
| 291 | |
| 292 | /// Check if any popup is currently visible |
| 293 | fn any_popup_visible(&self) -> bool { |
no test coverage detected