summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-08-02 23:11:20 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-08-02 23:11:20 +0900
commitf90985845d61e611b93e8fbeb7048f1df4eebd9b (patch)
tree9108de25a2942d7859aa6fe9d6acb5897f3b8903
parentaf4917dbb643a7991c50091ec55ec25acb7d28cb (diff)
downloadfzf-f90985845d61e611b93e8fbeb7048f1df4eebd9b.tar.gz
Fix '--tmux bottom' when the status line is not at the bottom
Fix #3948
-rw-r--r--src/tmux.go2
1 files changed, 1 insertions, 1 deletions
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: