From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Recurring TODOs and alreade done TODOs Date: Fri, 26 Mar 2010 17:35:25 -0400 Message-ID: <87tys26a1u.fsf@fastmail.fm> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NvH8k-0005MW-IF for emacs-orgmode@gnu.org; Fri, 26 Mar 2010 17:32:26 -0400 Received: from [140.186.70.92] (port=34945 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NvH8e-0005AH-N8 for emacs-orgmode@gnu.org; Fri, 26 Mar 2010 17:32:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NvH7K-0001oH-Vd for emacs-orgmode@gnu.org; Fri, 26 Mar 2010 17:31:00 -0400 Received: from out3.smtp.messagingengine.com ([66.111.4.27]:35564) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NvH7K-0001o4-Tm for emacs-orgmode@gnu.org; Fri, 26 Mar 2010 17:30:58 -0400 In-Reply-To: (Friedericksen Hope's message of "Fri, 26 Mar 2010 18:42:18 +0100") 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: friedericksen.hope@gmail.com Cc: emacs-orgmode@gnu.org 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