Skip to content

Commit

Permalink
Change picker horizontal split to h
Browse files Browse the repository at this point in the history
Follow window mode and vim behavior, x seemed weird.
  • Loading branch information
pickfire authored and archseer committed Jun 12, 2021
1 parent 45793d7 commit 1953588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-term/src/ui/picker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 1953588

Please sign in to comment.