Variable: iswitchb-minibuffer-setup-hook

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

Value

nil

Documentation

Iswitchb-specific customization of minibuffer setup.

This hook is run during minibuffer setup if iswitchb is active. For instance:
(add-hook 'iswitchb-minibuffer-setup-hook
'(lambda () (set (make-local-variable 'max-mini-window-height) 3)))
will constrain the minibuffer to a maximum height of 3 lines when iswitchb is running.

Source Code

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

This hook is run during minibuffer setup if `iswitchb' is active.
For instance:
\(add-hook \\='iswitchb-minibuffer-setup-hook
	  \\='\(lambda () (set (make-local-variable \\='max-mini-window-height) 3)))
will constrain the minibuffer to a maximum height of 3 lines when
iswitchb is running."
  :type 'hook)