From 500963b1c51e2a47d332ccfdd10abce4eb7dd72d Mon Sep 17 00:00:00 2001 From: mattwparas Date: Wed, 13 Sep 2023 20:55:26 -0700 Subject: [PATCH] clean up warnings --- helix-term/src/commands/engine.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helix-term/src/commands/engine.rs b/helix-term/src/commands/engine.rs index 85718ada5..16824d022 100644 --- a/helix-term/src/commands/engine.rs +++ b/helix-term/src/commands/engine.rs @@ -182,10 +182,10 @@ pub trait PluginSystem { /// editors default keybindings. fn handle_keymap_event( &self, - editor: &mut ui::EditorView, - mode: Mode, + _editor: &mut ui::EditorView, + _mode: Mode, _cxt: &mut Context, - event: KeyEvent, + _event: KeyEvent, ) -> Option { None }