Variable: cider-ns-refresh-show-log-buffer
cider-ns-refresh-show-log-buffer is a customizable variable defined in
cider-ns.el.
Value
nil
Documentation
Controls when to display the refresh log buffer.
If non-nil, the log buffer will be displayed every time cider-ns-refresh is
called. If nil, the log buffer will still be written to, but will never be
displayed automatically. Instead, the most relevant information will be
displayed in the echo area.
This variable was added, or its default value changed, in cider version 0.10.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-ns.el
(defcustom cider-ns-refresh-show-log-buffer nil
"Controls when to display the refresh log buffer.
If non-nil, the log buffer will be displayed every time `cider-ns-refresh' is
called. If nil, the log buffer will still be written to, but will never be
displayed automatically. Instead, the most relevant information will be
displayed in the echo area."
:type '(choice (const :tag "always" t)
(const :tag "never" nil))
:group 'cider
:package-version '(cider . "0.10.0"))