Variable: iswitchb-max-to-show

iswitchb-max-to-show is a customizable variable defined in iswitchb.el.gz.

Value

nil

Documentation

If non-nil, limit the number of names shown in the minibuffer.

If this value is N, and N is greater than the number of matching buffers, the first N/2 and the last N/2 matching buffers are shown. This can greatly speed up iswitchb if you have a multitude of buffers open.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defcustom iswitchb-max-to-show nil
  "If non-nil, limit the number of names shown in the minibuffer.
If this value is N, and N is greater than the number of matching
buffers, the first N/2 and the last N/2 matching buffers are
shown.  This can greatly speed up iswitchb if you have a
multitude of buffers open."
  :type '(choice (const :tag "Show all" nil) integer))