Function: cider-inspector-set-max-atom-length
cider-inspector-set-max-atom-length is an interactive and
byte-compiled function defined in cider-inspector.el.
Signature
(cider-inspector-set-max-atom-length MAX-LENGTH)
Documentation
Set the max length of nested atoms to MAX-LENGTH.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-set-max-atom-length (max-length)
"Set the max length of nested atoms to MAX-LENGTH."
(interactive (list (read-number "Max atom length: " cider-inspector-max-atom-length)))
(cider-inspector--refresh-with-opts "max-atom-length" max-length))