Function: projectile-doctor--executable
projectile-doctor--executable is a byte-compiled function defined in
projectile.el.
Signature
(projectile-doctor--executable NAME REMOTE)
Documentation
Report the availability of the NAME executable.
Returns present, missing, or skipped when the project is REMOTE
and looking the program up would mean a TRAMP round-trip.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-doctor--executable (name remote)
"Report the availability of the NAME executable.
Returns `present', `missing', or `skipped' when the project is REMOTE
and looking the program up would mean a TRAMP round-trip."
(cond (remote 'skipped)
((and name (executable-find name)) 'present)
(t 'missing)))