Add: (org-ql-views) Dangling tasks view
This commit is contained in:
parent
66f58b97f2
commit
843564ad8c
3 changed files with 25 additions and 12 deletions
|
|
@ -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.)
|
+ 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=.
|
+ Option =org-ql-view-sidebar-sort-views=.
|
||||||
+ Mouseover =help-echo= text for =org-ql-views= default view names.
|
+ 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*
|
*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):
|
+ 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):
|
||||||
|
|
|
||||||
|
|
@ -177,6 +177,15 @@ See info node `(elisp)Cyclic Window Ordering'."
|
||||||
:super-groups 'org-super-agenda-groups
|
:super-groups 'org-super-agenda-groups
|
||||||
:sort '(priority)))))
|
:sort '(priority)))))
|
||||||
(cons "Review: Recently timestamped" #'org-ql-view-recent-items)
|
(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"
|
(cons (propertize "Review: Stale tasks"
|
||||||
'help-echo "Tasks without a timestamp in the past 2 weeks")
|
'help-echo "Tasks without a timestamp in the past 2 weeks")
|
||||||
(list :buffers-files #'org-agenda-files
|
(list :buffers-files #'org-agenda-files
|
||||||
|
|
|
||||||
27
org-ql.info
27
org-ql.info
|
|
@ -755,6 +755,9 @@ will be pushed to the master branch when ready.
|
||||||
Radchenko (https://github.com/yantar92) for reporting.)
|
Radchenko (https://github.com/yantar92) for reporting.)
|
||||||
• Option org-ql-view-sidebar-sort-views.
|
• Option org-ql-view-sidebar-sort-views.
|
||||||
• Mouseover help-echo text for org-ql-views default view names.
|
• 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*
|
*Changed*
|
||||||
• Some default org-ql-view views (users who have modified
|
• Some default org-ql-view views (users who have modified
|
||||||
|
|
@ -1079,18 +1082,18 @@ Node: Agenda-like views18941
|
||||||
Node: Listing / acting-on results20346
|
Node: Listing / acting-on results20346
|
||||||
Node: Changelog24948
|
Node: Changelog24948
|
||||||
Node: 04-pre25485
|
Node: 04-pre25485
|
||||||
Node: 03229219
|
Node: 03229405
|
||||||
Node: 03129600
|
Node: 03129786
|
||||||
Node: 0329795
|
Node: 0329981
|
||||||
Node: 02332768
|
Node: 02332954
|
||||||
Node: 02232994
|
Node: 02233180
|
||||||
Node: 02133260
|
Node: 02133446
|
||||||
Node: 0233457
|
Node: 0233643
|
||||||
Node: 0137490
|
Node: 0137676
|
||||||
Node: Notes37589
|
Node: Notes37775
|
||||||
Node: Comparison with Org Agenda searches37751
|
Node: Comparison with Org Agenda searches37937
|
||||||
Node: org-sidebar38622
|
Node: org-sidebar38808
|
||||||
Node: License38901
|
Node: License39087
|
||||||
|
|
||||||
End Tag Table
|
End Tag Table
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue