Skip to content

Commit

Permalink
add space to select
Browse files Browse the repository at this point in the history
  • Loading branch information
rmsthebest committed Nov 17, 2024
1 parent d11f604 commit 9fc3054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ impl App {
self.repository.up();
self.state.select(Some(0));
}
Char('l') | Right | Enter => {
Char('l') | Char(' ') | Right | Enter => {
let selected = self.state.selected().unwrap_or_default();
if self.repository.is_option(selected) {
self.repository.toggle_current(selected);
Expand Down

0 comments on commit 9fc3054

Please sign in to comment.