Skip to content

Commit

Permalink
feat: support emacs nav closes #11
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Sep 6, 2024
1 parent 8659d36 commit ef92531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ impl ZellijPlugin for State {
close_focus();
}

Event::Key(Key::Down | Key::BackTab) => {
Event::Key(Key::Down | Key::BackTab | Key::Ctrl('n')) => {
self.select_down();

should_render = true;
}
Event::Key(Key::Up | Key::Ctrl('k')) => {
Event::Key(Key::Up | Key::Ctrl('k' | 'p')) => {
self.select_up();

should_render = true;
Expand Down

0 comments on commit ef92531

Please sign in to comment.