It would be really convenient if for certain tasks in org-mode, the subtasks could inherit the deadline of the main task. This behavior should occur in case I have not already specified a deadline for the subtask. In this way, all the subtasks would show up in my org-agenda view, with proper deadlines which are easily manipulatable.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

How about a function for adding subtasks? This one adds a deadline to the subtask if its parent has one:

(defun my-org-insert-sub-task ()
  (interactive)
  (let ((parent-deadline (org-get-deadline-time nil)))
    (org-goto-sibling)
    (org-insert-todo-subheading t)
    (when parent-deadline
      (org-deadline nil parent-deadline))))

Don't forget to bind it to a key:

(define-key org-mode-map (kbd "C-c s") 'my-org-insert-sub-task)

Also you might find these settings useful:

(setq org-enforce-todo-dependencies t)
(setq org-agenda-dim-blocked-tasks 'invisible)
link|improve this answer
:) a different way to approach the problem! I don't use a key-binding to add tasks, I simply add them by writing them down in the file. I don't know if I can break that habit when I try this, but I'll certainly give it a try. Thanks. – vedang Jan 20 at 10:33
I'll try this out for a week or so and mark it as accepted if it works for me. – vedang Jan 20 at 10:34
feedback

Recently, this question was asked and answered on the org-mode mailing list. I'm adding that discussion here in the hopes that someone will find it useful:

http://article.gmane.org/gmane.emacs.orgmode/49215

I've added that code into my .emacs in this commit:

https://github.com/vedang/emacs-config/commit/1cb6c774a991d50853134d8085ca61dd12585993

link|improve this answer
feedback

DEADLINE is one of these properties, that are not inherited by default. You can change that by customizing the variable org-use-property-inheritance

link|improve this answer
This does not work. I set the value of org-use-property-inheritance to t, and when that did not work I set it to ("DEADLINE"). However the deadline property is not inherited (it does not reflect in my Org-Agenda). – vedang Aug 10 '11 at 14:35
You are right, items with an inherited DEADLINE property do not show up in the agenda. I don't know how to change that. But they do show up in a special TODO list, if you want. (You may try that in order to see, if the inheritance works.) Hit M-x org-tags-view and confine the search to something like DEADLINE<="<2011-09-01>". – Manuel Batsching Aug 14 '11 at 11:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.