Function: cider-trace--indent

cider-trace--indent is a byte-compiled function defined in cider-tracing.el.

Signature

(cider-trace--indent DEPTH)

Documentation

Return the nesting indentation string for DEPTH.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tracing.el
(defun cider-trace--indent (depth)
  "Return the nesting indentation string for DEPTH."
  (apply #'concat (make-list (or depth 0) "│ ")))