Function: cider-inspector-set-max-nested-depth
cider-inspector-set-max-nested-depth is an interactive and
byte-compiled function defined in cider-inspector.el.
Signature
(cider-inspector-set-max-nested-depth MAX-NESTED-DEPTH)
Documentation
Set the level of nesting for collections to display beflore truncating.
MAX-NESTED-DEPTH is the new value.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-set-max-nested-depth (max-nested-depth)
"Set the level of nesting for collections to display beflore truncating.
MAX-NESTED-DEPTH is the new value."
(interactive (list (read-number "Max nested depth: " cider-inspector-max-nested-depth)))
(cider-inspector--refresh-with-opts "max-nested-depth" max-nested-depth))