Add space to open files in the explorer as an alternative to enter

change-detection
trivernis 2 years ago
parent 423435d12a
commit a864b63b0f
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -592,6 +592,7 @@ impl<T: TreeItem> Tree<T> {
key!('l') => self.move_right(1.max(count)),
shift!('G') => self.move_down(usize::MAX / 2),
key!(Enter) => self.on_enter(cx, params),
key!(' ') => self.on_enter(cx, params),
ctrl!('d') => self.move_down_half_page(),
ctrl!('u') => self.move_up_half_page(),
shift!('D') => self.move_down_page(),

Loading…
Cancel
Save