Function: projectile-doctor--executable-string
projectile-doctor--executable-string is a byte-compiled function
defined in projectile.el.
Signature
(projectile-doctor--executable-string STATUS)
Documentation
Return the human-readable rendering of an executable STATUS.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-doctor--executable-string (status)
"Return the human-readable rendering of an executable STATUS."
(pcase status
('present "present")
('missing "missing")
(_ "not checked (remote)")))