Revise docstrings for doom-project-{root,p}

This commit is contained in:
Henrik Lissner
2018-02-06 17:30:03 -05:00
parent 4658d22bf7
commit 508dbf7a5c

View File

@ -68,16 +68,16 @@ you want to interactive with a project other than the one you're in."
(dolist (fn projectile-project-root-files-functions)
(remhash (format "%s-%s" fn default-directory) projectile-project-root-cache)))
(defun doom-project-p (&optional nocache)
(defun doom-project-p (&optional nocache)
"Return t if this buffer is currently in a project.
If NOCACHE, don't fetch a cached answer."
(if nocache
(without-project-cache! (doom-project-p nil))
(let ((projectile-require-project-root t))
(projectile-project-p))))
(defun doom-project-root (&optional nocache)
"Get the path to the root of your project.
If STRICT-P, return nil if no project was found, otherwise return
(defun doom-project-root (&optional nocache)
"Returns the root of your project, or `default-directory' if none was found.
If NOCACHE, don't fetch a cached answer."
(if nocache
(without-project-cache! (doom-project-root nil))