Skip to content

Commit a20a657

Browse files
committed
feat(fit-preview): optionally double comp_length when showing preview
When previews are enabled, they typically take up half the width of the popup. This adds an option to make it double the width when preview is enabled, hence ensuring that the full text of completion items are visible.
1 parent c7fb028 commit a20a657

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lib/ftb-tmux-popup

+9
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ local text REPLY comp_lines comp_length length popup_pad popup_min_size
4545

4646
zstyle -a ":fzf-tab:$_ftb_curcontext" popup-pad popup_pad || popup_pad=(0 0)
4747
zstyle -a ":fzf-tab:$_ftb_curcontext" popup-min-size popup_min_size || popup_min_size=(0 0)
48+
zstyle -a ":fzf-tab:$_ftb_curcontext" popup-fit-preview popup_fit_preview_enabled || popup_fit_preview_enabled=no
49+
if [ "$popup_fit_preview_enabled" != "no" ] && zstyle -m ":fzf-tab:$_ftb_curcontext" fzf-preview '*'; then
50+
popup_fit_preview=1
51+
fi
4852

4953
# get the size of content, note we should remove all ANSI color code
5054
comp_lines=$(( ${#${(f)mapfile[$tmp_dir/completions.$$]}} + $popup_pad[2] ))
@@ -58,6 +62,11 @@ else
5862
# FIXME: can't get the correct width of CJK characters.
5963
comp_length=$( command perl -ne 's/\x1b\[[0-9;]*m//g;s/\x00//g; $m= length() if $m < length(); END { print $m }' < $tmp_dir/completions.$$ )
6064
fi
65+
66+
if [ -n "$popup_fit_preview" ]; then
67+
comp_length=$(( comp_length * 2 ))
68+
fi
69+
6170
comp_length=$(( comp_length + $popup_pad[1] ))
6271

6372
local popup_height popup_y popup_width popup_x adjust_height

0 commit comments

Comments
 (0)