Variable: ido-max-window-height
ido-max-window-height is a customizable variable defined in ido.el.gz.
Value
nil
Documentation
Non-nil specifies a value to override max-mini-window-height.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defcustom ido-max-window-height nil
"Non-nil specifies a value to override `max-mini-window-height'."
:type '(choice
(const :tag "Don't override" nil)
(integer :tag "Number of lines" :value 1)
(restricted-sexp
:tag "Fraction of window height"
:value 0.25
:match-alternatives (ido-fractionp))))