ADD survival goal file

This commit is contained in:
Nathan Dwarshuis 2022-02-26 11:56:22 -05:00
parent 128feca943
commit 6dee558ef9
2 changed files with 8 additions and 0 deletions

View File

@ -1017,6 +1017,7 @@ valid keyword or none of its parents have valid keywords."
"Return a list of all files to be used in the DAG."
`(,(org-x-get-lifetime-goal-file)
,(org-x-get-endpoint-goal-file)
,(org-x-get-survival-goal-file)
,(org-x-qtp-get-file)
,(org-x-get-weekly-plan-file)
,(org-x-get-daily-plan-file)

View File

@ -298,6 +298,9 @@ org tag and a long name respectively for the category.")
(defvar org-x-endpoint-goal-file nil
"Path to endpoint goal file.")
(defvar org-x-survival-goal-file nil
"Path to survival goal file.")
(defvar org-x-quarterly-plan-file nil
"Path to quarterly plan file.")
@ -451,6 +454,10 @@ PATH must be relative to `org-directory' and end in '.org'."
"Return the absolute path of `org-x-lifetime-goal-file'."
(org-x--expand-path org-x-lifetime-goal-file))
(defun org-x-get-survival-goal-file ()
"Return the absolute path of `org-x-survival-goal-file'."
(org-x--expand-path org-x-weekly-plan-file))
(defun org-x-get-capture-file ()
"Return the absolute path of `org-x-capture-file'."
(org-x--expand-path org-x-capture-file))