Daya Atapattu writes:
Is there a way to create a habit that picks-up the description
from a list?
I like to schedule studying a book: It would be scheduled as
"Read pages 100-125." Then the next day it should read "Read
pages 126-150." The description of the habit varies; org-mode
picks that up sequentially from a list.
Maybe you want to take a look at TODO dependencies (info "(org)
TODO dependencies") set `org-enforce-todo-dependencies' to t, and
do something like
#+BEGIN_EXAMPLE
* TODO Read book
:PROPERTIES:
:ORDERED: t
:END:
** TODO Pages 1-150
** TODO Pages 151-300
#+END_EXAMPLE
Then when closing one of the sub headlines, schedule the next one.
Best,
--
Jorge.