Variable: cider-auto-select-error-buffer
cider-auto-select-error-buffer is a customizable variable defined in
cider-compilation.el.
This variable is obsolete since 2.0.0; use cider-auto-select-buffer
instead.
Value
default
Documentation
Controls whether to auto-select the error popup buffer.
The value default defers to cider-auto-select-buffer; t and nil
override it for this buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-compilation.el
(defcustom cider-auto-select-error-buffer 'default
"Controls whether to auto-select the error popup buffer.
The value `default' defers to `cider-auto-select-buffer'; t and nil
override it for this buffer."
:type '(choice (const :tag "Inherit from cider-auto-select-buffer" default)
(const :tag "Always" t)
(const :tag "Never" nil))
:group 'cider)