Function: ibuffer-visit-buffer-other-frame

ibuffer-visit-buffer-other-frame is an interactive and byte-compiled function defined in ibuffer.el.gz.

Signature

(ibuffer-visit-buffer-other-frame)

Documentation

Visit the buffer on this line in another frame.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-visit-buffer-other-frame ()
  "Visit the buffer on this line in another frame."
  (interactive)
  (let ((buf (ibuffer-current-buffer t)))
    (bury-buffer (current-buffer))
    (switch-to-buffer-other-frame buf)))