Function: ido-switch-buffer-other-frame

ido-switch-buffer-other-frame is an autoloaded, interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-switch-buffer-other-frame)

Documentation

Switch to another buffer and show it in another frame.

The buffer name is selected interactively by typing a substring. For details of keybindings, see ido-switch-buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
;;;###autoload
(defun ido-switch-buffer-other-frame ()
  "Switch to another buffer and show it in another frame.
The buffer name is selected interactively by typing a substring.
For details of keybindings, see `ido-switch-buffer'."
  (interactive)
  (if ido-mode
      (ido-buffer-internal 'other-frame)
    (call-interactively 'switch-to-buffer-other-frame)))