diff options
author | Oskar Nehlin | 2021-10-23 11:06:40 +0000 |
---|---|---|
committer | GitHub | 2021-10-23 11:06:40 +0000 |
commit | 0f886af4b993c836bb2d522f6e036362593ff8b8 (patch) | |
tree | eb1c31821c1adff8b98132f8ad15a170ca714e5b /helix-term/src/ui | |
parent | 4ee92cad19cc94f0751f91fa9391d1899353d740 (diff) |
Add commands for moving between splits with a direction (#860)
* Add commands for moving between splits with a direction
* Update keymaps
* Change picker mapping
* Add test and clean up some comments
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/picker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index 1f08cf13..7e257c0b 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -373,7 +373,7 @@ impl<T: 'static> Component for Picker<T> { return close_fn; } KeyEvent { - code: KeyCode::Char('h'), + code: KeyCode::Char('s'), modifiers: KeyModifiers::CONTROL, } => { if let Some(option) = self.selection() { |