Re: [O] another (possibly) noob question

2011-03-15 Thread John Hendy
On Mon, Mar 14, 2011 at 11:15 PM, Filippo A. Salustri salus...@ryerson.ca wrote: So, I've set org-provide-todo-statistics to t and org-hierarchical-todo-statistics to nil. I use a TODO sequence to identify projects.  That is, (setq org-todo-keywords       '((sequence REVIEW(r) TODO(t)

Re: [O] another (possibly) noob question

2011-03-15 Thread Filippo A. Salustri
Sorry for the lack of info. org version 7.4 I created a new/test org file. It contains: * PROJECT aaa ** TODO t1 ** TODO t2 * TODO bbb [0/2] :PROPERTIES: :CATEGORY: dummy :END: ** TODO t3 ** TODO t4 If I leave out the [/], then all is well. If I add the [/] at the end of a level 1 heading that

Re: [O] another (possibly) noob question

2011-03-15 Thread Manish
I could not replicate it. C-c C-c on [/] at the end of an item with keyword PROJECT updated the cookie and did not switch the state to TODO. Changing a sub-item state to DONE also correctly (and automagically) updated the cookie. -- Manish On Tue, Mar 15, 2011 at 10:50 PM, Filippo A. Salustri

Re: [O] another (possibly) noob question

2011-03-15 Thread Filippo A. Salustri
Yep; I'm a noob. David rightly pointed me at org-after-todo-statistics-hook, which I'd set up to do as he does. The code for that was so far away in my .emacs file from the rest of the TODO stuff that I missed it. I corrected the code (it still does that, except it ignores PROJECT keywords), and

[O] another (possibly) noob question

2011-03-14 Thread Filippo A. Salustri
So, I've set org-provide-todo-statistics to t and org-hierarchical-todo-statistics to nil. I use a TODO sequence to identify projects. That is, (setq org-todo-keywords '((sequence REVIEW(r) TODO(t) ACTIVE(a!) WAIT(w@) SOMEDAY(s) | DONE(d) CANCELED(c@))