Variable: cider-inspector-max-atom-length
cider-inspector-max-atom-length is a customizable variable defined in
cider-inspector.el.
Value
150
Documentation
Default max length of nested atoms before they are truncated.
Atom here means any collection member that satisfies (complement coll?). The max length can be also changed interactively within the inspector.
This variable was added, or its default value changed, in cider version 1.1.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defcustom cider-inspector-max-atom-length 150
"Default max length of nested atoms before they are truncated.
Atom here means any collection member that satisfies (complement coll?).
The max length can be also changed interactively within the inspector."
:type '(integer :tag "Max atom length" 150)
:package-version '(cider . "1.1.0"))