diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2024-08-02 23:11:20 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2024-08-02 23:11:20 +0900 |
| commit | f90985845d61e611b93e8fbeb7048f1df4eebd9b (patch) | |
| tree | 9108de25a2942d7859aa6fe9d6acb5897f3b8903 /src/tmux.go | |
| parent | af4917dbb643a7991c50091ec55ec25acb7d28cb (diff) | |
| download | fzf-f90985845d61e611b93e8fbeb7048f1df4eebd9b.tar.gz | |
Fix '--tmux bottom' when the status line is not at the bottom
Fix #3948
Diffstat (limited to 'src/tmux.go')
| -rw-r--r-- | src/tmux.go | 2 |
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: |
