Function: magit-repolist-column-flags
magit-repolist-column-flags is a byte-compiled function defined in
magit-repos.el.
Signature
(magit-repolist-column-flags _)
Documentation
Insert all flags as specified by magit-repolist-column-flag-alist.
This is an alternative to function magit-repolist-column-flag,
which only lists the first one found.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-repos.el
(defun magit-repolist-column-flags (_)
"Insert all flags as specified by `magit-repolist-column-flag-alist'.
This is an alternative to function `magit-repolist-column-flag',
which only lists the first one found."
(mapconcat (pcase-lambda (`(,fun . ,flag))
(if (funcall fun) flag " "))
magit-repolist-column-flag-alist
""))