Add: (org-ql-views) Dangling tasks view

This commit is contained in:
Adam Porter 2020-01-22 23:15:00 -06:00
parent 66f58b97f2
commit 843564ad8c
3 changed files with 25 additions and 12 deletions

View file

@ -420,6 +420,7 @@ Expands into a call to ~org-ql-select~ with the same arguments. For convenience
+ Respect Org Agenda restriction in =org-ql-block=. (Thanks to [[https://github.com/yantar92][Ihor Radchenko]] for reporting.)
+ Option =org-ql-view-sidebar-sort-views=.
+ Mouseover =help-echo= text for =org-ql-views= default view names.
+ "Dangling tasks" default view in =org-ql-views=. (Users who have modified =org-ql-views= from the default will not see the new view unless they copy it into their config.)
*Changed*
+ Some default =org-ql-view= views (users who have modified =org-ql-views= from the default will not see the new views unless they copy them into their config):

View file

@ -177,6 +177,15 @@ See info node `(elisp)Cyclic Window Ordering'."
:super-groups 'org-super-agenda-groups
:sort '(priority)))))
(cons "Review: Recently timestamped" #'org-ql-view-recent-items)
(cons (propertize "Review: Dangling tasks"
'help-echo "Tasks whose ancestor is done")
(list :buffers-files #'org-agenda-files
:query '(and (todo)
(ancestors (done)))
:title (propertize "Review: Dangling tasks"
'help-echo "Tasks whose ancestor is done")
:sort '(date priority todo)
:super-groups '((:auto-parent t))))
(cons (propertize "Review: Stale tasks"
'help-echo "Tasks without a timestamp in the past 2 weeks")
(list :buffers-files #'org-agenda-files

View file

@ -755,6 +755,9 @@ will be pushed to the master branch when ready.
Radchenko (https://github.com/yantar92) for reporting.)
• Option org-ql-view-sidebar-sort-views.
• Mouseover help-echo text for org-ql-views default view names.
• "Dangling tasks" default view in org-ql-views. (Users who have
modified org-ql-views from the default will not see the new view
unless they copy it into their config.)
*Changed*
• Some default org-ql-view views (users who have modified
@ -1079,18 +1082,18 @@ Node: Agenda-like views18941
Node: Listing / acting-on results20346
Node: Changelog24948
Node: 04-pre25485
Node: 03229219
Node: 03129600
Node: 0329795
Node: 02332768
Node: 02232994
Node: 02133260
Node: 0233457
Node: 0137490
Node: Notes37589
Node: Comparison with Org Agenda searches37751
Node: org-sidebar38622
Node: License38901
Node: 03229405
Node: 03129786
Node: 0329981
Node: 02332954
Node: 02233180
Node: 02133446
Node: 0233643
Node: 0137676
Node: Notes37775
Node: Comparison with Org Agenda searches37937
Node: org-sidebar38808
Node: License39087

End Tag Table