Skip to content

Commit

Permalink
Fix '--tmux bottom' when the status line is not at the bottom
Browse files Browse the repository at this point in the history
Fix #3948
  • Loading branch information
junegunn committed Aug 2, 2024
1 parent af4917d commit f909858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmux.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func runTmux(args []string, opts *Options) (int, error) {
case posUp:
tmuxArgs = append(tmuxArgs, "-xC", "-y0")
case posDown:
tmuxArgs = append(tmuxArgs, "-xC", "-yS")
tmuxArgs = append(tmuxArgs, "-xC", "-y9999")
case posLeft:
tmuxArgs = append(tmuxArgs, "-x0", "-yC")
case posRight:
Expand Down

0 comments on commit f909858

Please sign in to comment.