From a864b63b0fb34233d95fac25e4d5badd44123b81 Mon Sep 17 00:00:00 2001 From: trivernis Date: Fri, 30 Sep 2022 21:25:41 +0200 Subject: [PATCH] Add space to open files in the explorer as an alternative to enter --- helix-term/src/ui/tree.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-term/src/ui/tree.rs b/helix-term/src/ui/tree.rs index 4379bbac..6ad7c3b1 100644 --- a/helix-term/src/ui/tree.rs +++ b/helix-term/src/ui/tree.rs @@ -592,6 +592,7 @@ impl Tree { 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(),