Function: projectile-run-command-in-root

projectile-run-command-in-root is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-run-command-in-root)

Documentation

Invoke execute-extended-command in the project's root.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-run-command-in-root ()
  "Invoke `execute-extended-command' in the project's root."
  (interactive)
  (projectile-with-default-dir (projectile-acquire-root)
    (call-interactively #'execute-extended-command)))