Memnon Anon <gegendosenflei...@googlemail.com> writes: > http://doc.norang.ca/org-mode.html#ChecklistHandling describes a similar > case.
Ah, interesting. I'll give it a try. > For minor (less than 5 minutes) subtasks like "Create folder, move mail > there", I would not want that to show up in my agenda, but only the > "real" task at hand: Archive Mail. > > #+BEGIN_SRC org > > * TODO Archive Mail [0/2] > SCHEDULED: <2012-09-01 Sat +1m> > :PROPERTIES: > RESET_CHECK_BOXES: t > :END: > > - [ ] Read and archive all mail (orgmode, Sent) > - [ ] Create monthly folder and move mail there > > #+END_SRC I tried it and it works great (small typo: there should be a colon at the beginning of "RESET_CHECK_BOXES"; I see that some colons are missing also on the above site). By the way, what is the canonical way to install contribs? The doc.norang.ca site says to simply add a "load_path" to the source directory of org-mode, but maybe there is another way. >>As you can see, subtasks are done, and I have set a repeater for the >>scheduling for one month. If I go on the first line and close the entry, >>I get the following: >> >>*** DONE Archive Mail [2/2] >> CLOSED: [2012-09-01 Sat 15:13] SCHEDULED: <2012-09-01 Sat +1m> > > The entry should go back to TODO and SCHEDULED: <2012-10-01 Mon +1m> > ... This is also what I was expecting. > What is your org-todo-keywords sequence? Stolen from Bastien ;-) #+BEGIN_SRC elisp (setq org-todo-keywords '((sequence "NEXT(/)" "TODO(t)" "STRT(s)" "WAIT(w@)") (sequence "|" "DONE(d)" "DELEGATED(D@)" "CANCELED(c@)"))) #+END_SRC > Did you set org-todo-repeat-to-state? (Should not be necessary...) No, it's nil. Thanks, Alan