ADD goal property
This commit is contained in:
parent
fa2b89dcd4
commit
8a5547d178
|
@ -2414,11 +2414,13 @@ Also here are the properties for repeateders and routine types.
|
||||||
org-x-prop-routine
|
org-x-prop-routine
|
||||||
org-x-prop-created
|
org-x-prop-created
|
||||||
org-x-prop-expire
|
org-x-prop-expire
|
||||||
org-x-prop-days-to-live)
|
org-x-prop-days-to-live
|
||||||
|
org-x-prop-goal)
|
||||||
(-union org-default-properties))
|
(-union org-default-properties))
|
||||||
|
|
||||||
org-use-property-inheritance (list org-x-prop-parent-type
|
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"
|
(let ((effort-choices (list "0:05" "0:15" "0:30" "1:00" "1:30" "2:00" "3:00"
|
||||||
"4:00" "5:00" "6: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
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq org-agenda-files '("~/Org"
|
(setq org-agenda-files '("~/Org"
|
||||||
"~/Org/projects"
|
"~/Org/projects"
|
||||||
"~/Org/reference"
|
"~/Org/reference/goals.org"
|
||||||
"~/Org/reference/meetings"
|
"~/Org/reference/meetings"
|
||||||
"~/Org/reference/peripheral.org"))
|
"~/Org/reference/peripheral.org"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
|
@ -215,6 +215,9 @@
|
||||||
(defconst org-x-prop-days-to-live "X-DAYS_TO_LIVE"
|
(defconst org-x-prop-days-to-live "X-DAYS_TO_LIVE"
|
||||||
"Property denoting after how many days a headline will expire.")
|
"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
|
;;; DRAWERS
|
||||||
|
|
||||||
(defconst org-x-drwr-agenda "AGENDA_ITEMS"
|
(defconst org-x-drwr-agenda "AGENDA_ITEMS"
|
||||||
|
|
Loading…
Reference in New Issue