Function: magit-repolist--format-entry
magit-repolist--format-entry is a byte-compiled function defined in
magit-repos.el.
Signature
(magit-repolist--format-entry ENTRY)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260822.1158/magit-repos.el
(defun magit-repolist--format-entry (entry)
(pcase-let ((`(,id . ,default-directory) entry))
(list default-directory
(vconcat
(mapcar (pcase-lambda (`(,title ,width ,fn ,props))
(or (funcall fn `((:id ,id)
(:title ,title)
(:width ,width)
,@props))
""))
magit-repolist-columns)))))