pub fn show_context_menu(path: impl AsRef<Path>) -> Result<Option<SelectedItem>>Expand description
Convenience: show a context menu for a single path at the cursor position.
Equivalent to:
let items = ShellItems::from_path(path)?;
ContextMenu::new(items)?.show()?;