Variable: iswitchb-mode

iswitchb-mode is a customizable variable defined in iswitchb.el.gz.

Value

nil

Documentation

Non-nil if Iswitchb mode is enabled.

See the iswitchb-mode(var)/iswitchb-mode(fun) command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node (emacs)Easy Customization) or call the function iswitchb-mode(var)/iswitchb-mode(fun).

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
;;;###autoload
(define-minor-mode iswitchb-mode
  "Toggle Iswitchb mode.

Iswitchb mode is a global minor mode that enables switching
between buffers using substrings.  See `iswitchb' for details."
  :keymap iswitchb-global-map :global t
  (if iswitchb-mode
      (add-hook 'minibuffer-setup-hook #'iswitchb-minibuffer-setup)
    (remove-hook 'minibuffer-setup-hook #'iswitchb-minibuffer-setup)))