Function: magit-modulelist-column-path
magit-modulelist-column-path is a byte-compiled function defined in
magit-submodule.el.
Signature
(magit-modulelist-column-path SPEC)
Documentation
Insert the relative path of the submodule.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-submodule.el
(defun magit-modulelist-column-path (spec)
"Insert the relative path of the submodule."
(let ((path (cadr (assq :path spec))))
(or (run-hook-with-args-until-success
'magit-submodule-list-format-path-functions path)
path)))