diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index f0b54e0b7fa4..414ed6dd4906 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1224,11 +1224,11 @@ fn replace(cx: &mut Context) { // need to wait for next key cx.on_next_key(move |cx, event| { let (view, doc) = current!(cx.editor); - let ch = match event { + let ch: Option<&str> = match event { KeyEvent { code: KeyCode::Char(ch), .. - } => Some(&ch.encode_utf8(&mut buf[..])[..]), + } => Some(ch.encode_utf8(&mut buf[..])), KeyEvent { code: KeyCode::Enter, .. diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index 3ca6965cfd62..49d91be61247 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -366,6 +366,7 @@ impl Picker { ); } else if pattern.starts_with(&self.previous_pattern) { // TODO: remove when retain_mut is in stable rust + #[allow(unused_imports)] use retain_mut::RetainMut; // optimization: if the pattern is a more specific version of the previous one