diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs index d1f423d1b..b745e548b 100644 --- a/helix-term/src/ui/prompt.rs +++ b/helix-term/src/ui/prompt.rs @@ -16,7 +16,7 @@ use helix_view::{ }; pub type Completion = (RangeFrom, Cow<'static, str>); -type PromptCharHandler = Box; +type PromptCharHandler = Box; pub struct Prompt { prompt: Cow<'static, str>, @@ -193,7 +193,7 @@ impl Prompt { } } - pub fn insert_char(&mut self, c: char, cx: &Context) { + pub fn insert_char(&mut self, c: char, cx: &mut Context) { if let Some(handler) = &self.next_char_handler.take() { handler(self, c, cx); @@ -549,7 +549,11 @@ impl Component for Prompt { } ctrl!('q') => self.exit_selection(), ctrl!('r') => { + self.completion = Vec::new(); //clear completions + cx.editor.autoinfo = + Some(helix_view::info::Info::from_registers(&cx.editor.registers)); // show registers info self.next_char_handler = Some(Box::new(|prompt, c, context| { + context.editor.autoinfo = None; prompt.insert_str( context .editor