From 8a5547d1786f7e05eed38ca8fe066d6b2f0a8dd7 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Fri, 24 Dec 2021 15:55:59 -0500 Subject: [PATCH] ADD goal property --- etc/conf.org | 8 +++++--- local/lib/org-x/org-x.el | 3 +++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/etc/conf.org b/etc/conf.org index 738a250..16a9c39 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -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 diff --git a/local/lib/org-x/org-x.el b/local/lib/org-x/org-x.el index 99dea59..bc1cff6 100644 --- a/local/lib/org-x/org-x.el +++ b/local/lib/org-x/org-x.el @@ -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"