Variable: cider-doc-show-clojuredocs-examples
cider-doc-show-clojuredocs-examples is a customizable variable defined
in cider-doc.el.
Value
nil
Documentation
Whether to show ClojureDocs examples in the doc buffer automatically.
When non-nil, cider-doc fetches ClojureDocs examples for the symbol and
appends them to the *cider-doc* buffer. When nil, the buffer instead shows
a button (and the \e key) to fetch them on demand.
This variable was added, or its default value changed, in cider version 2.0.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-doc.el
(defcustom cider-doc-show-clojuredocs-examples nil
"Whether to show ClojureDocs examples in the doc buffer automatically.
When non-nil, `cider-doc' fetches ClojureDocs examples for the symbol and
appends them to the `*cider-doc*' buffer. When nil, the buffer instead shows
a button (and the \\`e' key) to fetch them on demand."
:type 'boolean
:group 'cider-doc
:package-version '(cider . "2.0.0"))