Function: ibuffer-do-view

ibuffer-do-view is an interactive and byte-compiled function defined in ibuffer.el.gz.

Signature

(ibuffer-do-view &optional OTHER-FRAME)

Documentation

View marked buffers, or the buffer on the current line.

If optional argument OTHER-FRAME is non-nil, then display each marked buffer in a new frame. Otherwise, display each buffer as a new window in the current frame, splitting vertically.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-do-view (&optional other-frame)
  "View marked buffers, or the buffer on the current line.
If optional argument OTHER-FRAME is non-nil, then display each
marked buffer in a new frame.  Otherwise, display each buffer as
a new window in the current frame, splitting vertically."
  (interactive)
  (ibuffer-do-view-1 (if other-frame 'other-frame 'vertically)))