From 29962a5bd9e0c558ecd7dfa6c2eeec485e5ac890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Sj=C3=B6berg?= Date: Tue, 8 Jun 2021 19:56:53 +0200 Subject: [PATCH] Fix Shift-Tab for moving upwards in menu --- helix-term/src/ui/menu.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/ui/menu.rs b/helix-term/src/ui/menu.rs index 7be3be9d..0a264f7c 100644 --- a/helix-term/src/ui/menu.rs +++ b/helix-term/src/ui/menu.rs @@ -166,8 +166,8 @@ impl Component for Menu { } // arrow up/ctrl-p/shift-tab prev completion choice (including updating the doc) KeyEvent { - code: KeyCode::Tab, - modifiers: KeyModifiers::SHIFT, + code: KeyCode::BackTab, + .. } | KeyEvent { code: KeyCode::Up, ..