Variable: cider-inspector-max-coll-size

cider-inspector-max-coll-size is a customizable variable defined in cider-inspector.el.

Value

5

Documentation

Default number of nested collection members to display before truncating.

The max size 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-coll-size 5
  "Default number of nested collection members to display before truncating.
The max size can be also changed interactively within the inspector."
  :type '(integer :tag "Max collection size" 5)
  :package-version '(cider . "1.1.0"))