From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Org-for GTD: Some implementation questions Date: Fri, 21 Jan 2011 20:27:39 -0500 Message-ID: <8739ol7mno.fsf@norang.ca> References: <4D3A0693.1010502@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=42673 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PgSGV-0002bE-Pu for emacs-orgmode@gnu.org; Fri, 21 Jan 2011 20:27:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PgSGU-0006IT-Lf for emacs-orgmode@gnu.org; Fri, 21 Jan 2011 20:27:43 -0500 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:19417) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PgSGU-0006IE-IB for emacs-orgmode@gnu.org; Fri, 21 Jan 2011 20:27:42 -0500 In-Reply-To: <4D3A0693.1010502@gmail.com> (Chris Barber's message of "Sat, 22 Jan 2011 09:20:03 +1100") 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: Chris Barber Cc: emacs-orgmode@gnu.org Hi Chris, Comments are inline below: Chris Barber writes: > Hi, I am currently using Org-mode to apply GTD > I was wondering what you would do with the following situations: > My todo sequence is next -> done, and someday, delegate -> waiting, > cancelled I would also add a TODO state - not everything is NEXT or WAITING is it? #+TODO: TODO(t) NEXT(n) | DONE(d) #+TODO: SOMEDAY(s) DELEGATE(D) WAITING(w) | CANCELLED(c) > - For scheduled tasks, would you make these tasks NEXTs or would you > set them as waiting? If NEXTs, how would you filter the agenda to not > show these scheduled NEXTs? I just make scheduled tasks TODO to keep them off my NEXT lists. I also set org-todo-ignore-scheduled as follows so these tasks don't show up in my global todo lists before I plan to work on them. #+begin_src emacs-lisp (setq org-todo-ignore-scheduled 'future #+end_src > - For a heading with three subtasks, if the last 2 subtasks require > the first subtask to be completed, how would you handle this? I'm assuming you have to do subtask 1 first, and then subtasks 2 and 3 can be done in any order after task one. This seems to work: * TODO Project :PROPERTIES: :ORDERED: t :END: ** TODO Step 1 ** TODO Step 2 and 3 *** TODO Step 2 *** TODO Step 3 > Thanks and I look forward to your response More details of my setup can be found at http://doc.norang.ca/org-mode.html Regards, Bernt