Variable: ido-default-buffer-method

ido-default-buffer-method is a customizable variable defined in ido.el.gz.

Value

raise-frame

Documentation

How to switch to new buffer when using ido-switch-buffer.

See ido-default-file-method for details.

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defcustom ido-default-buffer-method  'raise-frame
  "How to switch to new buffer when using `ido-switch-buffer'.
See `ido-default-file-method' for details."
    :type '(choice (const :tag "Show in selected window" selected-window)
		   (const :tag "Show in other window" other-window)
		   (const :tag "Display (no select) in other window" display)
		   (const :tag "Show in other frame" other-frame)
		   (const :tag "Ask to show in other frame" maybe-frame)
		   (const :tag "Raise frame if already shown" raise-frame)))