Function: projectile-run-ielm
projectile-run-ielm is an autoloaded, interactive and byte-compiled
function defined in projectile.el.
Signature
(projectile-run-ielm &optional ARG)
Documentation
Invoke ielm in the project's root (the ielm projectile-run backend).
Use a prefix argument ARG to indicate creation of a new process instead.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-run-ielm (&optional arg)
"Invoke `ielm' in the project's root (the ielm `projectile-run' backend).
Use a prefix argument ARG to indicate creation of a new process instead."
(interactive "P")
(projectile--run 'ielm arg nil))