ADD survival goal file
This commit is contained in:
parent
128feca943
commit
6dee558ef9
|
@ -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."
|
"Return a list of all files to be used in the DAG."
|
||||||
`(,(org-x-get-lifetime-goal-file)
|
`(,(org-x-get-lifetime-goal-file)
|
||||||
,(org-x-get-endpoint-goal-file)
|
,(org-x-get-endpoint-goal-file)
|
||||||
|
,(org-x-get-survival-goal-file)
|
||||||
,(org-x-qtp-get-file)
|
,(org-x-qtp-get-file)
|
||||||
,(org-x-get-weekly-plan-file)
|
,(org-x-get-weekly-plan-file)
|
||||||
,(org-x-get-daily-plan-file)
|
,(org-x-get-daily-plan-file)
|
||||||
|
|
|
@ -298,6 +298,9 @@ org tag and a long name respectively for the category.")
|
||||||
(defvar org-x-endpoint-goal-file nil
|
(defvar org-x-endpoint-goal-file nil
|
||||||
"Path to endpoint goal file.")
|
"Path to endpoint goal file.")
|
||||||
|
|
||||||
|
(defvar org-x-survival-goal-file nil
|
||||||
|
"Path to survival goal file.")
|
||||||
|
|
||||||
(defvar org-x-quarterly-plan-file nil
|
(defvar org-x-quarterly-plan-file nil
|
||||||
"Path to quarterly plan file.")
|
"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'."
|
"Return the absolute path of `org-x-lifetime-goal-file'."
|
||||||
(org-x--expand-path 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 ()
|
(defun org-x-get-capture-file ()
|
||||||
"Return the absolute path of `org-x-capture-file'."
|
"Return the absolute path of `org-x-capture-file'."
|
||||||
(org-x--expand-path org-x-capture-file))
|
(org-x--expand-path org-x-capture-file))
|
||||||
|
|
Loading…
Reference in New Issue