Omnifocus style reviews with org-mode
I started using Emacs and org-mode in earnest in the middle of 2019. At that point in time I was using Omnifocus to track my tasks and Bearapp for notes. I was missing plaintext functionality. Since then I’ve reproduced most of the functionality that Omnifocus offerred except one particular feature: reviews.
In GTD, reviews occupy a pretty important niche. Without regular task and project reviews task lists tend to grow out of control and become polutted. One important consideration for a task list is for it to closely resemble the actual state of what you have to do.
I went looking for a way to do automated reviews in org, and found org-review.
org-review relies on the LAST_REVIEW
property to determine when the next review (NEXT_REVIEW
) should happen and out of the box this property is not generated.
I wrote a bit of elisp to auto generate these properties for all TODO
entries when a file is saved. This guarantees that the entry will bubble up for review a month after creation. Month is a default review duration
that can be configured via REVIEW_DELAY
property.
Add this somewhere in ~/.emacs
or similar.
|
|
The process will look something like this:
- Add a
TODO
task to inbox - Once a file is saved the
*_REVIEW
properties are generated. - … some time passess …
- Hit
C-c a R
to start the review mode. - Hit
C-c C-r
to review selected items.