Function: projectile-run-shell-command-in-root
projectile-run-shell-command-in-root is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-run-shell-command-in-root COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER)
Documentation
Invoke shell-command in the project's root.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-run-shell-command-in-root (command &optional output-buffer error-buffer)
"Invoke `shell-command' in the project's root."
(interactive (list (read-shell-command "Shell command: ")))
(projectile-with-default-dir (projectile-acquire-root)
(shell-command command output-buffer error-buffer)))