Function: forge-format-repo-condition

forge-format-repo-condition is a byte-compiled function defined in forge-repos.el.

Signature

(forge-format-repo-condition REPO)

Documentation

Return a character representing the value of REPO's condition slot.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-repos.el
(defun forge-format-repo-condition (repo)
  "Return a character representing the value of REPO's `condition' slot."
  (pcase-exhaustive (oref repo condition)
    (:tracked "*")
    (:known " ")
    (:stub (propertize "s" 'face 'warning))))