Function: ibuffer-other-window
ibuffer-other-window is an autoloaded, interactive and byte-compiled
function defined in ibuffer.el.gz.
Signature
(ibuffer-other-window &optional FILES-ONLY)
Documentation
Like ibuffer, but displayed in another window by default.
If optional argument FILES-ONLY is non-nil, then add a filter for buffers which are visiting a file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
;;;###autoload
(defun ibuffer-other-window (&optional files-only)
"Like `ibuffer', but displayed in another window by default.
If optional argument FILES-ONLY is non-nil, then add a filter for
buffers which are visiting a file."
(interactive "P")
(ibuffer t nil (when files-only
'((filename . ".*")))))