From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Jan_B=F6cker?= Subject: Re: Repeater Options Date: Sun, 17 Jan 2010 22:39:12 +0100 Message-ID: <4B538380.6080209@jboecker.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NWcqf-0007va-U9 for emacs-orgmode@gnu.org; Sun, 17 Jan 2010 16:39:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NWcqa-0007te-Cs for emacs-orgmode@gnu.org; Sun, 17 Jan 2010 16:39:53 -0500 Received: from [199.232.76.173] (port=34261 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NWcqa-0007tX-4I for emacs-orgmode@gnu.org; Sun, 17 Jan 2010 16:39:48 -0500 Received: from mail7.worldserver.net ([217.13.200.27]:46131) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NWcqZ-0007E3-F6 for emacs-orgmode@gnu.org; Sun, 17 Jan 2010 16:39:47 -0500 In-Reply-To: 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: Nick Parker Cc: emacs-orgmode@gnu.org On 17.01.2010 21:31, Nick Parker wrote: > Is there a way to specify a todo item that is scheduled to repeat on the > 3rd Thursday of the month? I tried to use +1m, however that does not > work the same way. Any suggestions? For more complex repeaters like that, you need to use a diary sexp like this: <%%(diary-float t 4 3> The 4 specifies the 4th day of the week (0 = Sunday through 6 = Saturday). The 3 specifies the first Thursday. This is adapted from an example in the Org documentation; refer to "Diary-style sexp entries" under "8.1 Timestamps, deadlines and scheduling". I have an entry in my Org files which has two of these, to show up on both the second and the fourth Tuesday of every month. HTH, Jan