Function: projectile-configure-project
projectile-configure-project is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-configure-project ARG)
Documentation
Run project configure command.
Normally you'll be prompted for a compilation command, unless
variable compilation-read-command(var)/compilation-read-command(fun). You can force the prompt
with a prefix ARG.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-configure-project (arg)
"Run project configure command.
Normally you'll be prompted for a compilation command, unless
variable `compilation-read-command'. You can force the prompt
with a prefix ARG."
(interactive "P")
(projectile--run-lifecycle-phase 'configure arg))