Function: projectile-run-async-shell-command-in-root

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

Signature

(projectile-run-async-shell-command-in-root COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER)

Documentation

Invoke async-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-async-shell-command-in-root (command &optional output-buffer error-buffer)
  "Invoke `async-shell-command' in the project's root."
  (interactive (list (read-shell-command "Async shell command: ")))
  (projectile-with-default-dir (projectile-acquire-root)
    (async-shell-command command output-buffer error-buffer)))