fix: use org-capture-projects-file

This commit is contained in:
Edmund Miller 2020-01-07 16:06:51 -06:00
parent b5a279311c
commit 90096239af
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D

View file

@ -148,16 +148,16 @@ project."
(defun +org-capture-central-project-todo-file () (defun +org-capture-central-project-todo-file ()
"TODO" "TODO"
(+org--capture-central-file (+org--capture-central-file
+org-capture-todo-file (projectile-project-name))) +org-capture-projects-file (projectile-project-name)))
;;;###autoload ;;;###autoload
(defun +org-capture-central-project-notes-file () (defun +org-capture-central-project-notes-file ()
"TODO" "TODO"
(+org--capture-central-file (+org--capture-central-file
+org-capture-notes-file (projectile-project-name))) +org-capture-projects-file (projectile-project-name)))
;;;###autoload ;;;###autoload
(defun +org-capture-central-project-changelog-file () (defun +org-capture-central-project-changelog-file ()
"TODO" "TODO"
(+org--capture-central-file (+org--capture-central-file
+org-capture-changelog-file (projectile-project-name))) +org-capture-projects-file (projectile-project-name)))