Function: forge-format-repo-selective

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

Signature

(forge-format-repo-selective REPO)

Documentation

Return a character representing the value of REPO's selective-p slot.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-repos.el
(defun forge-format-repo-selective (repo)
  "Return a character representing the value of REPO's `selective-p' slot."
  (pcase-exhaustive (oref repo selective-p)
    ('t   "*")
    ('nil " ")))