From 19535888735a97e0a9ccb057ea12f8bbd4dfaa7a Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Sat, 12 Jun 2021 18:39:27 +0800 Subject: [PATCH] Change picker horizontal split to h Follow window mode and vim behavior, x seemed weird. --- helix-term/src/ui/picker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index 0674f4cc..eae9d74f 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -188,7 +188,7 @@ impl Component for Picker { return close_fn; } KeyEvent { - code: KeyCode::Char('x'), + code: KeyCode::Char('h'), modifiers: KeyModifiers::CONTROL, } => { if let Some(option) = self.selection() {