Variable: display-buffer-base-action

display-buffer-base-action is a customizable variable defined in window.el.gz.

Value

(nil)

Documentation

User-specified default action for display-buffer.

This is the default action used by display-buffer if no other actions are specified or all fail, before falling back on display-buffer-fallback-action.

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 24.1.

View in manual

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defcustom display-buffer-base-action '(nil . nil)
  "User-specified default action for `display-buffer'.
This is the default action used by `display-buffer' if no other
actions are specified or all fail, before falling back on
`display-buffer-fallback-action'.

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 "24.1"
  :group 'windows)