Function: buffer-menu-other-window

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

Signature

(buffer-menu-other-window &optional ARG)

Documentation

Display the Buffer Menu in another window.

See buffer-menu for a description of the Buffer Menu.

By default, all buffers are listed except those whose names start with a space (which are for internal use). With prefix argument ARG, show only buffers that are visiting files.

View in manual

Probably introduced at or before Emacs version 19.29.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/buff-menu.el.gz
(defun buffer-menu-other-window (&optional arg)
  "Display the Buffer Menu in another window.
See `buffer-menu' for a description of the Buffer Menu.

By default, all buffers are listed except those whose names start
with a space (which are for internal use).  With prefix argument
ARG, show only buffers that are visiting files."
  (interactive "P")
  (switch-to-buffer-other-window (list-buffers-noselect arg))
  (buffer-menu--display-help))