Function: projectile--run
projectile--run is a byte-compiled function defined in projectile.el.
Signature
(projectile--run PREFERENCE NEW-PROCESS OTHER-WINDOW)
Documentation
Launch the shell backend PREFERENCE, passing NEW-PROCESS and OTHER-WINDOW.
PREFERENCE is resolved against projectile-shell-backends the same way
projectile-search-backend is (a name, auto, or prompt).
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--run (preference new-process other-window)
"Launch the shell backend PREFERENCE, passing NEW-PROCESS and OTHER-WINDOW.
PREFERENCE is resolved against `projectile-shell-backends' the same way
`projectile-search-backend' is (a name, `auto', or `prompt')."
(funcall (plist-get (cdr (projectile--resolve-backend
projectile-shell-backends preference "shell"))
:run)
new-process other-window))