Function: cider-log--format-value

cider-log--format-value is a byte-compiled function defined in cider-log.el.

Signature

(cider-log--format-value VALUE)

Documentation

Format the VALUE for display in a transient menu.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--format-value (value)
  "Format the VALUE for display in a transient menu."
  (cond ((null value) "")
        ((or (listp value) (vectorp value))
         (string-join (seq-map #'cider-log--format-value value)
                      (propertize ", " 'face 'font-lock-comment-face)))
        (t (propertize (format "%s" value) 'face 'transient-value))))