Re: [O] DONE all subtasks recursively

2011-07-22 Thread Bastien
Hi Bernt, Bernt Hansen be...@norang.ca writes: (defun bh/mark-subtree-done () (interactive) (org-mark-subtree) (let ((limit (point))) (save-excursion (exchange-point-and-mark) (while ( (point) limit) (org-todo DONE) (outline-previous-visible-heading 1))

Re: [O] DONE all subtasks recursively

2011-07-21 Thread Aankhen
Hello Marcelo, On Wed, Jul 20, 2011 at 21:11, Marcelo de Moraes Serpa celose...@gmail.com wrote: *bump* Hey guys, if someone could guide me a hint on where I should look to hack some elisp code in order to do that, I'd be grateful ;) Cheers, Marcelo. On Mon, Jul 18, 2011 at 1:30 PM,

Re: [O] DONE all subtasks recursively

2011-07-21 Thread Bernt Hansen
Marcelo de Moraes Serpa celose...@gmail.com writes: *bump* Hey guys, if someone could guide me a hint on where I should look to hack some elisp code in order to do that, I'd be grateful ;) Cheers, Marcelo. --8---cut here---start-8--- (defun

Re: [O] DONE all subtasks recursively

2011-07-20 Thread Marcelo de Moraes Serpa
*bump* Hey guys, if someone could guide me a hint on where I should look to hack some elisp code in order to do that, I'd be grateful ;) Cheers, Marcelo. On Mon, Jul 18, 2011 at 1:30 PM, Marcelo de Moraes Serpa celose...@gmail.com wrote: Hey guys If I have a headline with children, like

[O] DONE all subtasks recursively

2011-07-18 Thread Marcelo de Moraes Serpa
Hey guys If I have a headline with children, like this: * Project ** TODO Task ** TODO Task ** SubProject *** TODO Task *** TODO Task Does org have any functionality that allows me to automatically close (Change TODO-DONE, put DONE when TODO is not available (in the case of Projects))