Function: cider-trace--set-all-folds
cider-trace--set-all-folds is a byte-compiled function defined in
cider-tracing.el.
Signature
(cider-trace--set-all-folds FOLD)
Documentation
Fold every call when FOLD is non-nil, otherwise unfold every call.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tracing.el
(defun cider-trace--set-all-folds (fold)
"Fold every call when FOLD is non-nil, otherwise unfold every call."
(when cider-trace--folds
(maphash (lambda (_id ov)
(overlay-put ov 'display (and fold cider-trace--fold-placeholder)))
cider-trace--folds)))