Variable: iswitchb-use-virtual-buffers

iswitchb-use-virtual-buffers is a customizable variable defined in iswitchb.el.gz.

Value

nil

Documentation

If non-nil, refer to past buffers when none match.

This feature relies upon the recentf package, which will be enabled if this variable is configured to a non-nil value.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defcustom iswitchb-use-virtual-buffers nil
  "If non-nil, refer to past buffers when none match.
This feature relies upon the `recentf' package, which will be
enabled if this variable is configured to a non-nil value."
  :type 'boolean
  :require 'recentf
  :set (function
	(lambda (sym value)
	  (if value (recentf-mode 1))
	  (set sym value))))