From f90985845d61e611b93e8fbeb7048f1df4eebd9b Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 2 Aug 2024 23:11:20 +0900 Subject: [PATCH] Fix '--tmux bottom' when the status line is not at the bottom Fix #3948 --- src/tmux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmux.go b/src/tmux.go index 3be95661..246222f9 100644 --- a/src/tmux.go +++ b/src/tmux.go @@ -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: