Function: ibuffer-visit-buffer-other-window

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

Signature

(ibuffer-visit-buffer-other-window &optional NOSELECT)

Documentation

Visit the buffer on this line in another window.

Key Bindings

Source Code

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