Add missing keybindings

pull/11441/head
GNUSheep 3 months ago
parent e30a9a059c
commit c8e7ed840a

@ -1200,10 +1200,10 @@ impl<I: 'static + Send + Sync, D: 'static + Send + Sync> Component for Picker<I,
Direction::Forward,
);
}
alt!('b') if self.show_preview => {
alt!('b') | alt!(PageUp) if self.show_preview => {
self.move_preview_by(self.preview_height as usize, Direction::Backward);
}
alt!('f') if self.show_preview => {
alt!('f') | alt!(PageDown) if self.show_preview => {
self.move_preview_by(self.preview_height as usize, Direction::Forward);
}
_ => {

Loading…
Cancel
Save