aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorIvan Tham2021-06-12 10:39:27 +0000
committerBlaž Hrastnik2021-06-12 12:17:48 +0000
commit19535888735a97e0a9ccb057ea12f8bbd4dfaa7a (patch)
tree513d53fe7281303ffe82f63dcf602452e23019de /helix-term/src
parent45793d7c097ca5c9cb9b6eaa13bb1c716ee10d60 (diff)
Change picker horizontal split to h
Follow window mode and vim behavior, x seemed weird.
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/ui/picker.rs2
1 files changed, 1 insertions, 1 deletions
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<T: 'static> Component for Picker<T> {
return close_fn;
}
KeyEvent {
- code: KeyCode::Char('x'),
+ code: KeyCode::Char('h'),
modifiers: KeyModifiers::CONTROL,
} => {
if let Some(option) = self.selection() {