Function: projectile-acquire-root

projectile-acquire-root is a byte-compiled function defined in projectile.el.

Signature

(projectile-acquire-root &optional DIR)

Documentation

Find the current project root, and prompts the user for it if that fails.

Provides the common idiom (projectile-ensure-project (projectile-project-root)). Starts the search for the project with DIR.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-acquire-root (&optional dir)
  "Find the current project root, and prompts the user for it if that fails.
Provides the common idiom (projectile-ensure-project (projectile-project-root)).
Starts the search for the project with DIR."
  (projectile-ensure-project (projectile-project-root dir)))