Function: projectile-with-default-dir

projectile-with-default-dir is a macro defined in projectile.el.

Signature

(projectile-with-default-dir DIR &rest BODY)

Documentation

Invoke in DIR the BODY.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defmacro projectile-with-default-dir (dir &rest body)
  "Invoke in DIR the BODY."
  (declare (debug t) (indent 1))
  `(let ((default-directory ,dir))
     ,@body))