From mboxrd@z Thu Jan 1 00:00:00 1970 From: Friedericksen Hope Subject: Re: Recurring TODOs and alreade done TODOs Date: Sat, 27 Mar 2010 07:40:43 +0100 Message-ID: References: <87tys26a1u.fsf@fastmail.fm> Reply-To: friedericksen.hope@gmail.com Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NvPhf-0000zJ-1U for emacs-orgmode@gnu.org; Sat, 27 Mar 2010 02:41:03 -0400 Received: from [140.186.70.92] (port=49748 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NvPhd-0000yW-Gl for emacs-orgmode@gnu.org; Sat, 27 Mar 2010 02:41:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NvPhc-0005Bj-5Y for emacs-orgmode@gnu.org; Sat, 27 Mar 2010 02:41:01 -0400 Received: from lo.gmane.org ([80.91.229.12]:40248) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NvPhb-0005BZ-V9 for emacs-orgmode@gnu.org; Sat, 27 Mar 2010 02:41:00 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1NvPhY-0007Se-OP for emacs-orgmode@gnu.org; Sat, 27 Mar 2010 07:40:56 +0100 Received: from p5b2053e0.dip.t-dialin.net ([91.32.83.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 27 Mar 2010 07:40:56 +0100 Received: from friedericksen.hope by p5b2053e0.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 27 Mar 2010 07:40:56 +0100 In-Reply-To: <87tys26a1u.fsf@fastmail.fm> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Thank you very much, Matt! Everything works fine now... :-) On 03/26/2010 10:35 PM, Matt Lundin wrote: > Friedericksen Hope writes: > >> First the problem: >> I would like to create some recurring TODO items. But for example, when I use >> 'C-c C-s 10-05-01 +1w' it just create the timestamp: 'SCHEDULED:<2010-05-01 Sat>' >> I don't know why, because it is exactly like in the manual described. >> Do I have to enable recurring TODOs in the config? > > I believe you have to set recurring todos by hand---i.e., dive into the > org file and edit the SCHEDULED timestamp. > >> Is there a way/function/option to automatically clear or archive old >> TODO-Items which are marked as DONE? > > Here's one way to do it: > > --8<---------------cut here---------------start------------->8--- > (defun my-org-archive-done-items () > "Archive all items marked done in the current file" > (interactive) > (org-map-entries > '(org-archive-subtree-default) > "/!+DONE" 'file)) > --8<---------------cut here---------------end--------------->8--- > > Best, > Matt > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode >