From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: repeater not working? Date: Sun, 02 Sep 2012 08:47:43 +0200 Message-ID: References: <87mx19bmrt.fsf@mean.albasani.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:33426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T83yW-0004Sl-LM for emacs-orgmode@gnu.org; Sun, 02 Sep 2012 02:48:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T83yV-0002zF-2s for emacs-orgmode@gnu.org; Sun, 02 Sep 2012 02:48:04 -0400 Received: from mail4-relais-sop.national.inria.fr ([192.134.164.105]:38266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T83yU-0002z3-JO for emacs-orgmode@gnu.org; Sun, 02 Sep 2012 02:48:02 -0400 In-Reply-To: <87mx19bmrt.fsf@mean.albasani.net> (Memnon Anon's message of "Sat, 1 Sep 2012 19:08:14 +0000 (UTC)") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Memnon Anon Cc: emacs-orgmode Memnon Anon 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