[vim] Export $FZF_HEIGHT for previewer scripts

Preview script cannot properly determine the height of fzf finder if
`--height` option is used.

https://github.com/junegunn/fzf.vim/issues/361
pull/909/head
Junegunn Choi 7 years ago
parent d5e72bf55d
commit 93b8f61551
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -379,7 +379,9 @@ try
let use_term = 0
endif
if use_height
let optstr .= ' --height='.s:calc_size(&lines, dict.down, dict)
let height = s:calc_size(&lines, dict.down, dict)
let $FZF_HEIGHT = height
let optstr .= ' --height='.height
elseif use_term
let optstr .= ' --no-height'
endif

Loading…
Cancel
Save