Re: [O] TODO list sorted across categories

2013-07-07 Thread Bastien
Hi Edward,

Edward DeMeulle e...@demeulle.org writes:

 I'd like to be able to produce a TODO list that is sorted by timestamp
 independently of category. I'm still new to elisp and so don't yet
 understand all the code involved. What I've been able to do so far is
 create a separate version of org-todo-list by changing a single line:

   (org-set-sorting-strategy 'timestamp-up) ; was 'todo

 however that appears to sort by timestamp within categories, not
 across. Is there a relatively simply way to have org-todo-list ignore
 categories? 

Did you try to set `org-agenda-sorting-strategy' for your agenda view?

That's the standard way of manipulating TODO list views you create on
the fly with M-x org-agenda RET.

2 cts,

-- 
 Bastien



Re: [O] TODO list sorted across categories

2013-07-07 Thread Edward DeMeulle
Thank you. That was far simpler than I expected.




[O] TODO list sorted across categories

2013-07-06 Thread Edward DeMeulle
I'd like to be able to produce a TODO list that is sorted by timestamp
independently of category. I'm still new to elisp and so don't yet
understand all the code involved. What I've been able to do so far is
create a separate version of org-todo-list by changing a single line:

  (org-set-sorting-strategy 'timestamp-up) ; was 'todo

however that appears to sort by timestamp within categories, not
across. Is there a relatively simply way to have org-todo-list ignore
categories?