Variable: cider-inspector-max-nested-depth
cider-inspector-max-nested-depth is a customizable variable defined in
cider-inspector.el.
Value
5
Documentation
Default level of nesting for collections to display before truncating.
The max depth can be also changed interactively within the inspector.
This variable was added, or its default value changed, in cider version 1.14.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defcustom cider-inspector-max-nested-depth 5
"Default level of nesting for collections to display before truncating.
The max depth can be also changed interactively within the inspector."
:type '(integer :tag "Max nested collection depth" 5)
:package-version '(cider . "1.14.0"))