Skip to content

Commit

Permalink
Fix left-right tab change
Browse files Browse the repository at this point in the history
  • Loading branch information
hiasr committed May 3, 2024
1 parent a8fdeac commit 6f46dc6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ impl State {
if self.current_pane_is_vim() {
write_chars(direction_to_keybinding(direction));
} else {
move_focus_or_tab(direction);
match direction {
Direction::Left | Direction::Right => move_focus_or_tab(direction),
_ => move_focus(direction),
}
}
}

Expand Down

0 comments on commit 6f46dc6

Please sign in to comment.