Variable: ido-minibuffer-setup-hook

ido-minibuffer-setup-hook is a customizable variable defined in ido.el.gz.

Value

nil

Documentation

Ido-specific customization of minibuffer setup.

This hook is run during minibuffer setup if Ido is active. It is intended for use in customizing Ido for interoperation with other packages. For instance:

  (add-hook 'ido-minibuffer-setup-hook
(lambda () (setq-local max-mini-window-height 3)))

will constrain Emacs to a maximum minibuffer height of 3 lines when Ido is running. Copied from icomplete-minibuffer-setup-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defcustom ido-minibuffer-setup-hook nil
  "Ido-specific customization of minibuffer setup.

This hook is run during minibuffer setup if Ido is active.
It is intended for use in customizing Ido for interoperation
with other packages.  For instance:

  (add-hook \\='ido-minibuffer-setup-hook
	    (lambda () (setq-local max-mini-window-height 3)))

will constrain Emacs to a maximum minibuffer height of 3 lines when
Ido is running.  Copied from `icomplete-minibuffer-setup-hook'."
  :type 'hook)