REF move skip functions to org-x file

This commit is contained in:
Nathan Dwarshuis 2021-04-20 22:58:05 -04:00
parent 734c2e84b4
commit 0044ff5872
2 changed files with 132 additions and 99 deletions

View File

@ -2558,10 +2558,10 @@ By default I want block agendas to sort based on the todo keyword (with NEXT bei
:END: :END:
These agenda commands are the center of the gtd workflow. These agenda commands are the center of the gtd workflow.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defmacro nd/org-x-mk-skip-function (&rest body) ;; (defmacro org-x-mk-skip-function (&rest body)
"Return a skip function with BODY. ;; "Return a skip function with BODY.
The only thing this function does is `save-excursion' and `widen'." ;; The only thing this function does is `save-excursion' and `widen'."
`(lambda () (save-excursion (widen) ,@body))) ;; `(lambda () (save-excursion (widen) ,@body)))
(defmacro nd/org-x-mk-super-agenda-pred (&rest body) (defmacro nd/org-x-mk-super-agenda-pred (&rest body)
"Return a predicate function with BODY. "Return a predicate function with BODY.
@ -2611,9 +2611,7 @@ original org entry before executing BODY."
"Calendar View" "Calendar View"
((agenda ((agenda
"" ""
((org-agenda-skip-function ((org-agenda-skip-function #'org-x-calendar-skip-function)
'(org-x-skip-headings-with-tags
(list org-x-tag-no-agenda org-x-tag-maybe org-x-tag-refile)))
(org-agenda-sorting-strategy '(time-up deadline-up scheduled-up category-keep)) (org-agenda-sorting-strategy '(time-up deadline-up scheduled-up category-keep))
(org-agenda-include-diary t) (org-agenda-include-diary t)
(org-super-agenda-groups (org-super-agenda-groups
@ -2645,28 +2643,7 @@ original org entry before executing BODY."
| org-x-kw-hold | org-x-kw-hold
| org-x-kw-canc) | org-x-kw-canc)
((org-agenda-overriding-header "Tasks") ((org-agenda-overriding-header "Tasks")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-task-skip-function)
,(nd/org-x-mk-skip-function
(let ((keyword (org-x-is-todoitem-p)))
;; currently we assume that periodicals have no TODOs
(cond
;; skip over held/canc projects
((and (member keyword org-x-project-skip-todostates)
(org-x-is-project-p))
(org-x-skip-subtree))
;; skip iterators
((org-x-is-iterator-heading-p)
(org-x-skip-heading))
;; skip project headings
((org-x-is-project-p)
(org-x-skip-heading))
;; skip canceled tasks
((and (equal keyword org-x-kw-canc)
(org-x-is-task-p))
(org-x-skip-heading))
;; skip habits
((org-x-is-habit-heading-p)
(org-x-skip-heading))))))
(org-agenda-todo-ignore-with-date t) (org-agenda-todo-ignore-with-date t)
(org-agenda-sorting-strategy '(user-defined-up category-keep)) (org-agenda-sorting-strategy '(user-defined-up category-keep))
(org-super-agenda-groups (org-super-agenda-groups
@ -2697,13 +2674,7 @@ original org entry before executing BODY."
- org-x-tag-refile - org-x-tag-refile
- org-x-tag-incubated) - org-x-tag-incubated)
((org-agenda-overriding-header "Projects") ((org-agenda-overriding-header "Projects")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-project-skip-function)
,(nd/org-x-mk-skip-function
(cond ((or (org-x-is-iterator-heading-p)
(org-x-is-periodical-heading-p))
(org-x-skip-subtree))
((not (org-x-is-project-p))
(org-x-skip-heading)))))
(org-agenda-sorting-strategy '(category-keep)) (org-agenda-sorting-strategy '(category-keep))
(org-super-agenda-groups (org-super-agenda-groups
`((:auto-map `((:auto-map
@ -2735,24 +2706,7 @@ original org entry before executing BODY."
- org-x-tag-refile - org-x-tag-refile
+ org-x-tag-incubated) + org-x-tag-incubated)
((org-agenda-overriding-header "Incubator") ((org-agenda-overriding-header "Incubator")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-incubator-skip-function)
,(nd/org-x-mk-skip-function
(let ((keyword (org-x-is-todoitem-p)))
(cond
;; skip done/canc projects
((and (member keyword org-done-keywords)
(org-x-is-project-p))
(org-x-skip-subtree))
;; skip project tasks
((and keyword (org-x-is-project-task-p))
(org-x-skip-heading))
;; skip done/canc tasks
((member keyword org-done-keywords)
(org-x-skip-heading))
;; skip non-tasks if they don't have a timestamp
((and (not keyword)
(not (org-x-is-timestamped-heading-p)))
(org-x-skip-heading))))))
(org-agenda-sorting-strategy '(category-keep)) (org-agenda-sorting-strategy '(category-keep))
(org-super-agenda-groups (org-super-agenda-groups
`((:name "Past Deadlines" :deadline past) `((:name "Past Deadlines" :deadline past)
@ -2781,13 +2735,7 @@ original org entry before executing BODY."
((tags ((tags
,(nd/org-x-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile) ,(nd/org-x-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile)
((org-agenda-overriding-header "Iterator Status") ((org-agenda-overriding-header "Iterator Status")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-periodical-skip-function)
,(nd/org-x-mk-skip-function
(cond
((not (org-x-is-periodical-heading-p))
(org-x-skip-heading))
((org-x-headline-has-parent 'org-x-is-periodical-heading-p)
(org-x-skip-heading)))))
(org-agenda-sorting-strategy '(category-keep)) (org-agenda-sorting-strategy '(category-keep))
(org-super-agenda-groups (org-super-agenda-groups
`((:auto-map `((:auto-map
@ -2804,13 +2752,7 @@ original org entry before executing BODY."
((tags ((tags
,(nd/org-x-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile) ,(nd/org-x-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile)
((org-agenda-overriding-header "Iterator Status") ((org-agenda-overriding-header "Iterator Status")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-iterator-skip-function)
,(nd/org-x-mk-skip-function
(cond
((not (org-x-is-iterator-heading-p))
(org-x-skip-heading))
((org-x-headline-has-parent 'org-x-is-iterator-heading-p)
(org-x-skip-heading)))))
(org-agenda-sorting-strategy '(category-keep)) (org-agenda-sorting-strategy '(category-keep))
(org-super-agenda-groups (org-super-agenda-groups
`((:auto-map `((:auto-map
@ -2838,13 +2780,7 @@ original org entry before executing BODY."
- org-x-tag-refile - org-x-tag-refile
- org-x-tag-incubated) - org-x-tag-incubated)
((org-agenda-overriding-header "Critical Errors") ((org-agenda-overriding-header "Critical Errors")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-critical-error-skip-function)
,(nd/org-x-mk-skip-function
(cond
((org-x-is-habit-heading-p)
(org-x-skip-heading))
((org-x-is-periodical-heading-p)
(org-x-skip-subtree)))))
(org-super-agenda-groups (org-super-agenda-groups
`((:name "Discontinuous Projects" :pred `((:name "Discontinuous Projects" :pred
,(nd/org-x-mk-super-agenda-pred ,(nd/org-x-mk-super-agenda-pred
@ -2890,30 +2826,7 @@ original org entry before executing BODY."
((tags ((tags
,(nd/org-x-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile) ,(nd/org-x-mk-match-string - org-x-tag-no-agenda - org-x-tag-refile)
((org-agenda-overriding-header "Archive") ((org-agenda-overriding-header "Archive")
(org-agenda-skip-function (org-agenda-skip-function #'org-x-skip-function-archivable)
,(nd/org-x-mk-skip-function
(let ((keyword (org-x-is-todoitem-p)))
(cond
;; skip all non-archivable projects
((and keyword
(org-x-is-project-p)
(not (eq :archivable (org-x-get-project-status))))
(org-x-skip-subtree))
;; skip all incubator tasks
((org-x-headline-has-tag-p org-x-tag-incubated)
(org-x-skip-heading))
;; skip all project tasks
((and keyword (org-x-is-project-task-p))
(org-x-skip-heading))
;; skip all tasks not marked done or archivable
((and keyword
(org-x-is-task-p)
(not (eq :archivable (org-x-task-status))))
(org-x-skip-heading))
;; skip all non-todoitems that are not stale
((and (not keyword)
(not (org-x-is-stale-heading-p)))
(org-x-skip-heading))))))
(org-agenda-sorting-strategy '(category-keep)) (org-agenda-sorting-strategy '(category-keep))
(org-super-agenda-groups (org-super-agenda-groups
`((:name "Atomic Tasks" :pred `((:name "Atomic Tasks" :pred

View File

@ -1305,5 +1305,125 @@ If ARG is non-nil use long timestamp format."
(add-hook 'org-capture-before-finalize-hook #'org-x-set-creation-time) (add-hook 'org-capture-before-finalize-hook #'org-x-set-creation-time)
;; skip functions (all of them)
(defmacro org-x-mk-skip-function (&rest body)
"Return a skip function with BODY.
The only thing this function does is `save-excursion' and `widen'."
`(lambda () (save-excursion (widen) ,@body)))
(defun org-x-calendar-skip-function ()
(org-x-skip-headings-with-tags
(list org-x-tag-no-agenda
org-x-tag-maybe org-x-tag-refile)))
(defun org-x-task-skip-function ()
(save-excursion
(widen)
(let ((keyword (org-x-is-todoitem-p)))
;; currently we assume that periodicals have no TODOs
(cond
;; skip over held/canc projects
((and (member keyword org-x-project-skip-todostates)
(org-x-is-project-p))
(org-x-skip-subtree))
;; skip iterators
((org-x-is-iterator-heading-p)
(org-x-skip-heading))
;; skip project headings
((org-x-is-project-p)
(org-x-skip-heading))
;; skip canceled tasks
((and (equal keyword org-x-kw-canc)
(org-x-is-task-p))
(org-x-skip-heading))
;; skip habits
((org-x-is-habit-heading-p)
(org-x-skip-heading))))))
(defun org-x-project-skip-function ()
(save-excursion
(widen)
(cond
((or (org-x-is-iterator-heading-p) (org-x-is-periodical-heading-p))
(org-x-skip-subtree))
((not (org-x-is-project-p))
(org-x-skip-heading)))))
(defun org-x-incubator-skip-function ()
(save-excursion
(widen)
(let ((keyword (org-x-is-todoitem-p)))
(cond
;; skip done/canc projects
((and (member keyword org-done-keywords)
(org-x-is-project-p))
(org-x-skip-subtree))
;; skip project tasks
((and keyword (org-x-is-project-task-p))
(org-x-skip-heading))
;; skip done/canc tasks
((member keyword org-done-keywords)
(org-x-skip-heading))
;; skip non-tasks if they don't have a timestamp
((and (not keyword)
(not (org-x-is-timestamped-heading-p)))
(org-x-skip-heading))))))
(defun org-x-periodical-skip-function ()
(save-excursion
(widen)
(cond
((not (org-x-is-periodical-heading-p))
(org-x-skip-heading))
((org-x-headline-has-parent #'org-x-is-periodical-heading-p)
(org-x-skip-heading)))))
(defun org-x-iterator-skip-function ()
(save-excursion
(widen)
(cond
((not (org-x-is-iterator-heading-p))
(org-x-skip-heading))
((org-x-headline-has-parent #'org-x-is-iterator-heading-p)
(org-x-skip-heading)))))
(defun org-x-critical-error-skip-function ()
(save-excursion
(widen)
(cond
((org-x-is-habit-heading-p)
(org-x-skip-heading))
((org-x-is-periodical-heading-p)
(org-x-skip-subtree)))))
(defun org-x-skip-function-archivable ()
;; (org-x-mk-skip-function
(save-excursion
(widen)
(let ((keyword (org-get-todo-state)))
(cond
;; skip all non-archivable projects
((and keyword
;; TODO gets the keyword again
(org-x-is-project-p)
(not (eq :archivable (org-x-get-project-status))))
(org-x-skip-subtree))
;; skip all incubator tasks
((org-x-headline-has-tag-p org-x-tag-incubated)
(org-x-skip-heading))
;; skip all project tasks
((and keyword (org-x-is-project-task-p))
(org-x-skip-heading))
;; skip all tasks not marked done or archivable
((and keyword
;; TODO gets the keyword again
(org-x-is-task-p)
(not (eq :archivable (org-x-task-status))))
(org-x-skip-heading))
;; skip all non-todoitems that are not stale
((and (not keyword) (not (org-x-is-stale-heading-p)))
(org-x-skip-heading))))))
(provide 'org-x) (provide 'org-x)
;;; org-x.el ends here ;;; org-x.el ends here