Skip to content

Commit

Permalink
right arrow functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Nov 19, 2024
1 parent 6ab61e4 commit 574907a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/atuin/src/command/client/search/interactive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ impl State {
KeyCode::Esc if esc_allow_exit => Some(Self::handle_key_exit(settings)),
KeyCode::Char('[') if ctrl && esc_allow_exit => Some(Self::handle_key_exit(settings)),
KeyCode::Tab => Some(InputAction::Accept(self.results_state.selected())),
KeyCode::Right => Some(InputAction::Accept(self.results_state.selected())),
KeyCode::Char('o') if ctrl => {
self.tab_index = (self.tab_index + 1) % TAB_TITLES.len();

Expand Down

0 comments on commit 574907a

Please sign in to comment.