Variable: bs-default-action-list

bs-default-action-list is a customizable variable defined in bs.el.gz.

Value

((display-buffer-reuse-window display-buffer-below-selected)
 (reusable-frames) (window-height . window-min-height))

Documentation

Default action list for showing the '*bs-selection*' buffer.

This list will be passed to pop-to-buffer as its ACTION argument. It should be a cons cell (FUNCTIONS . ALIST), where FUNCTIONS is an action function or a list of action functions and ALIST is an action alist. Each such action function should accept two arguments: a buffer to display and an alist of the same form as ALIST. See display-buffer for details.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/bs.el.gz
(defcustom bs-default-action-list '((display-buffer-reuse-window
				     display-buffer-below-selected)
				    (reusable-frames . nil)
				    (window-height . window-min-height))
  "Default action list for showing the '*bs-selection*' buffer.

This list will be passed to `pop-to-buffer' as its ACTION argument.
It should be a cons cell (FUNCTIONS . ALIST), where FUNCTIONS is
an action function or a list of action functions and ALIST is an
action alist.  Each such action function should accept two
arguments: a buffer to display and an alist of the same form as
ALIST.  See `display-buffer' for details."
  :type display-buffer--action-custom-type
  :risky t
  :version "30.1"
  :group 'bs)