summaryrefslogtreecommitdiff
path: root/src/tmux.go
AgeCommit message (Collapse)Author
2025-06-10Add footerJunegunn Choi
Options: --footer=STR String to print as footer --footer-border[=STYLE] Draw border around the footer section [rounded|sharp|bold|block|thinblock|double|horizontal|vertical| top|bottom|left|right|line|none] (default: line) --footer-label=LABEL Label to print on the footer border --footer-label-pos=COL Position of the footer label [POSITIVE_INTEGER: columns from left| NEGATIVE_INTEGER: columns from right][:bottom] (default: 0 or center) The default border type for footer is 'line', which draws a single separator between the footer and the list. It changes its position depending on `--layout`, so you don't have to manually switch between 'top' and 'bottom' The 'line' style is now supported by other border types as well. `--list-border` is the only exception.
2025-01-17Allow setting border styles at once with --style full:STYLEJunegunn Choi
2025-01-04Add `border-native` option to `--tmux` flag (#4157)Andreas Auernhammer
This commit adds the `border-native` resulting in the following: ``` --tmux[=[center|top|bottom|left|right][,SIZE[%]][,SIZE[%]][,border-native]] ``` By default, when not specified, the `-B` flag is passed to the `tmux popup-window` command such that no border is drawn around the tmux popup window. When the `border-native` option is present, the `-B` flag is omitted and the popup window is drawn using the border style configured in the tmux config file. Fixes #4156 Signed-off-by: Andreas Auernhammer <github@aead.dev> Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2024-09-29--tmux: Export bash functionsJunegunn Choi
Fix #4001
2024-08-02Fix '--tmux bottom' when the status line is not at the bottomJunegunn Choi
Fix #3948
2024-05-20Use winpty to launch fzf in Git bash (mintty)Junegunn Choi
Close #3806 Known limitation: * --height cannot be used
2024-05-18Do not 'become' inside a tmux popupJunegunn Choi
fzf --tmux center --bind 'enter:become:vim {}'
2024-05-18Add --tmux option to replace fzf-tmux scriptJunegunn Choi