diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 00556e18..0c33241f 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2252,7 +2252,9 @@ pub fn completion(cx: &mut Context) { } use crate::compositor::AnyComponent; let size = compositor.size(); - let ui = compositor.find("hx::ui::editor::EditorView").unwrap(); + let ui = compositor + .find(std::any::type_name::()) + .unwrap(); if let Some(ui) = ui.as_any_mut().downcast_mut::() { ui.set_completion(items, offset_encoding, trigger_offset, size); };