* Org-for GTD: Some implementation questions
@ 2011-01-21 22:20 Chris Barber
2011-01-22 1:27 ` Bernt Hansen
0 siblings, 1 reply; 2+ messages in thread
From: Chris Barber @ 2011-01-21 22:20 UTC (permalink / raw)
To: emacs-orgmode
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
- 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?
- For a heading with three subtasks, if the last 2 subtasks require
the first subtask to be completed, how would you handle this?
Thanks and I look forward to your response
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Org-for GTD: Some implementation questions
2011-01-21 22:20 Org-for GTD: Some implementation questions Chris Barber
@ 2011-01-22 1:27 ` Bernt Hansen
0 siblings, 0 replies; 2+ messages in thread
From: Bernt Hansen @ 2011-01-22 1:27 UTC (permalink / raw)
To: Chris Barber; +Cc: emacs-orgmode
Hi Chris,
Comments are inline below:
Chris Barber <c.barber80@gmail.com> 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-01-22 1:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21 22:20 Org-for GTD: Some implementation questions Chris Barber
2011-01-22 1:27 ` Bernt Hansen
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).