ADD goal property

This commit is contained in:
Nathan Dwarshuis 2021-12-24 15:55:59 -05:00
parent fa2b89dcd4
commit 8a5547d178
2 changed files with 8 additions and 3 deletions

View File

@ -2414,11 +2414,13 @@ Also here are the properties for repeateders and routine types.
org-x-prop-routine
org-x-prop-created
org-x-prop-expire
org-x-prop-days-to-live)
org-x-prop-days-to-live
org-x-prop-goal)
(-union org-default-properties))
org-use-property-inheritance (list org-x-prop-parent-type
org-x-prop-time-shift))
org-x-prop-time-shift
org-x-prop-goal))
(let ((effort-choices (list "0:05" "0:15" "0:30" "1:00" "1:30" "2:00" "3:00"
"4:00" "5:00" "6:00"))
@ -2676,7 +2678,7 @@ The agenda files are limited to as few as possible to keep scanning and startup
#+BEGIN_SRC emacs-lisp
(setq org-agenda-files '("~/Org"
"~/Org/projects"
"~/Org/reference"
"~/Org/reference/goals.org"
"~/Org/reference/meetings"
"~/Org/reference/peripheral.org"))
#+END_SRC

View File

@ -215,6 +215,9 @@
(defconst org-x-prop-days-to-live "X-DAYS_TO_LIVE"
"Property denoting after how many days a headline will expire.")
(defconst org-x-prop-goal "X-GOAL"
"Property denoting the goal this headline fulfills.")
;;; DRAWERS
(defconst org-x-drwr-agenda "AGENDA_ITEMS"