fzf-14.sh
· 439 B · Bash
Bruto
# --tmux [center|top|bottom|left|right][,SIZE[%]][,SIZE[%]]
fzf --tmux center # Center, 50% width and height
fzf --tmux 80% # Center, 80% width and height
fzf --tmux 100%,50% # Center, 100% width and 50% height
fzf --tmux left,40% # Left, 40% width
fzf --tmux left,40%,90% # Left, 40% width, 90% height
fzf --tmux top,40% # Top, 40% height
fzf --tmux bottom,80%,40% # Bottom, 80% height, 40% height
1 | # --tmux [center|top|bottom|left|right][,SIZE[%]][,SIZE[%]] |
2 | |
3 | fzf --tmux center # Center, 50% width and height |
4 | fzf --tmux 80% # Center, 80% width and height |
5 | fzf --tmux 100%,50% # Center, 100% width and 50% height |
6 | fzf --tmux left,40% # Left, 40% width |
7 | fzf --tmux left,40%,90% # Left, 40% width, 90% height |
8 | fzf --tmux top,40% # Top, 40% height |
9 | fzf --tmux bottom,80%,40% # Bottom, 80% height, 40% height |