From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: Ignore sub-items of Scheduled TODOs? Date: Fri, 03 Jul 2009 14:36:33 -0500 Message-ID: <87r5wxh83i.fsf@fastmail.fm> References: <211769420907021621q449d3fa8md8cb2f85ade3927b@mail.gmail.com> <87prcih9vv.fsf@fastmail.fm> <211769420907031203m62f0185ekb2c45e6ef6790710@mail.gmail.com> 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 1MMoYt-0005Rh-Bt for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 15:36:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MMoYo-0005P4-La for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 15:36:42 -0400 Received: from [199.232.76.173] (port=48531 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MMoYo-0005Oo-8Q for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 15:36:38 -0400 Received: from out3.smtp.messagingengine.com ([66.111.4.27]:50625) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MMoYn-0007Ju-Ng for emacs-orgmode@gnu.org; Fri, 03 Jul 2009 15:36:37 -0400 In-Reply-To: <211769420907031203m62f0185ekb2c45e6ef6790710@mail.gmail.com> (Nathan Neff's message of "Fri, 3 Jul 2009 14:03:28 -0500") 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: Nathan Neff Cc: Matthew Lundin , emacs org-mode mailing list Nathan Neff writes: >> Probably the simplest thing to do is to add SCHEDULED timestamps to the >> sub-items as well. As I understand it, org-mode timestamps cannot be >> inherited by subheadings. I imagine someone else will quickly come along >> and correct me if I'm wrong. :) > > It's just kind of a bummer if I have 10-12 TODOs under an item, and > want to put the item off for awhile. I have to go and schedule 10-12 > items. That's why I don't think I'm doing this correctly -- any other > advice would be appreciated. Emacs macros come in really handy here. To define the macro, type: C-x ( [starts macro definition] C-c C-s +2w [schedule two weeks in future] C-c C-n [move to next heading] C-x ) [end macro definition] Then once you've defined the macro, simply type: C-x e [to execute the macro on the next heading] or C-u 12 C-x e [to execute the macro on the next twelve headings] I believe there was something on the mailing list recently about batch rescheduling in the agenda. You might want to check that out. On the other hand, if all of the sub-items are sub-tasks of the first task, do you really need to activate each of them as todos (i.e., add the TODO keyword) right away? Wouldn't it suffice to schedule the main item and then to check the subitems on the day the main item appears on the agenda? The other possibility here would be to enter the subitems as plain list checkboxes: --8<---------------cut here---------------start------------->8--- * TODO top level item, scheduled for future [0/2] SCHEDULED: <2009-07-16 Thu> - [ ] A sub-item I don't want to see until 7/16 - [ ] Another sub-item I don't want to see until 7/16 --8<---------------cut here---------------end--------------->8--- By adding the cookie "[/]" the end of the main item, you would then be reminded of the number and state of the subtasks when the main item appears in the agenda. Best, Matt