diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 3eb1d0e364a210b3594ab697f538232468d2b772..126e16bfb0a32b6f8c8ce12df9949b515f5d973f 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -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