Function: cider-inspector-set-max-coll-size

cider-inspector-set-max-coll-size is an interactive and byte-compiled function defined in cider-inspector.el.

Signature

(cider-inspector-set-max-coll-size MAX-SIZE)

Documentation

Set the number of nested collection members to display before truncating.

MAX-SIZE is the new value.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-set-max-coll-size (max-size)
  "Set the number of nested collection members to display before truncating.
MAX-SIZE is the new value."
  (interactive (list (read-number "Max collection size: " cider-inspector-max-coll-size)))
  (cider-inspector--refresh-with-opts "max-coll-size" max-size))