Function: bs-show

bs-show is an autoloaded, interactive and byte-compiled function defined in bs.el.gz.

Signature

(bs-show ARG)

Documentation

Make a menu of buffers so you can manipulate buffers or the buffer list.

There are many key commands similar to Buffer-menu-mode for manipulating the buffer list and the buffers themselves. User can move with [up] or [down], select a buffer by RET (bs-select) or [SPC]

Type q (bs-kill) to leave Buffer Selection Menu without a selection. Type ? (describe-mode) after invocation to get help on commands available. With prefix argument ARG show a different buffer list. Function bs--configuration-name-for-prefix-arg determine accordingly name of buffer configuration.

View in manual

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
;;;###autoload
(defun bs-show (arg)
  "Make a menu of buffers so you can manipulate buffers or the buffer list.
\\<bs-mode-map>
There are many key commands similar to `Buffer-menu-mode' for
manipulating the buffer list and the buffers themselves.
User can move with [up] or [down], select a buffer
by \\[bs-select] or [SPC]\n
Type \\[bs-kill] to leave Buffer Selection Menu without a selection.
Type \\[describe-mode] after invocation to get help on commands available.
With prefix argument ARG show a different buffer list.  Function
`bs--configuration-name-for-prefix-arg' determine accordingly
name of buffer configuration."
  (interactive "P")
  (setq bs--marked-buffers nil)
  (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg)))