Re: org-agenda todos list sorted by earliest deadline first

2022-05-11 Thread Ihor Radchenko
Sébastien Gendre writes: > The only option I have to set is: > ``` > (setq org-agenda-sorting-strategy '((agenda deadline-down time-up habit-up > priority-down timestamp-down category-keep) > (todo deadline-up priority-down > category-keep) >

Re: org-agenda todos list sorted by earliest deadline first

2022-05-10 Thread Sébastien Gendre
So, I updated to Org-mode 9.5.3 from ELPA and the problem is gone. Now, I get the tasks in the agenda in the correct order: Earliest deadlines firsts, on top of the tasks list, then the tasks without deadlines. The only option I have to set is: ``` (setq org-agenda-sorting-strategy '((agenda de

Re: org-agenda todos list sorted by earliest deadline first

2022-04-05 Thread Sébastien Gendre
Tested with "emacs -q", I got the same result. Le 5 avril 2022 09:14:43 GMT+02:00, Ihor Radchenko a écrit  : >Sébastien Gendre writes: > >> If I evaluate the same setq and define the same tasks, my result withe >> org-agenda tasks list are: >> >> Global list of TODO items of type: ALL >> Pres

Re: org-agenda todos list sorted by earliest deadline first

2022-04-05 Thread Ihor Radchenko
Sébastien Gendre writes: > If I evaluate the same setq and define the same tasks, my result withe > org-agenda tasks list are: > > Global list of TODO items of type: ALL > Press ‘N r’ (e.g. ‘0 r’) to search again: (0)[A$ > (1)TODO (2)DONE > test: TODO test1 > test

Re: org-agenda todos list sorted by earliest deadline first

2022-04-04 Thread Sébastien Gendre
If I evaluate the same setq and define the same tasks, my result withe org-agenda tasks list are: Global list of TODO items of type: ALL Press ‘N r’ (e.g. ‘0 r’) to search again: (0)[A$ (1)TODO (2)DONE test: TODO test1 test: TODO test2 test: TODO test

Re: org-agenda todos list sorted by earliest deadline first

2022-04-04 Thread Ihor Radchenko
Sébastien Gendre writes: > I've tested it, but the tasks with no deadlines are still on top of the list. I am unable to reproduce on my side using latest stable Org. I used the following example org file: * TODO test1 * TODO test2 * TODO test3 DEADLINE: <2022-04-04 Mon> * TODO test4 DEADLI

Re: org-agenda todos list sorted by earliest deadline first

2022-04-04 Thread Sébastien Gendre
I've done it, but tasks with no deadlines are still on top of the list Le 4 avril 2022 13:42:26 GMT+02:00, Ihor Radchenko a écrit  : >Sébastien Gendre writes: > >> My Emacs version is 27.2 and Org is 9.4.4. >> >> The value of "org-agenda-sorting-strategy" is: >> >> ((agenda habit-down time-up pr

Re: org-agenda todos list sorted by earliest deadline first

2022-04-04 Thread Sébastien Gendre
I've tested it, but the tasks with no deadlines are still on top of the list. Le 4 avril 2022 13:42:26 GMT+02:00, Ihor Radchenko a écrit  : >Sébastien Gendre writes: > >> My Emacs version is 27.2 and Org is 9.4.4. >> >> The value of "org-agenda-sorting-strategy" is: >> >> ((agenda habit-down tim

Re: org-agenda todos list sorted by earliest deadline first

2022-04-04 Thread Ihor Radchenko
Sébastien Gendre writes: > My Emacs version is 27.2 and Org is 9.4.4. > > The value of "org-agenda-sorting-strategy" is: > > ((agenda habit-down time-up priority-down category-keep) > (todo priority-down category-keep deadline-up) > (tags priority-down category-keep deadline-up) > (search cate

Re: org-agenda todos list sorted by earliest deadline first

2022-04-02 Thread Sébastien Gendre
My Emacs version is 27.2 and Org is 9.4.4. The value of "org-agenda-sorting-strategy" is: ((agenda habit-down time-up priority-down category-keep) (todo priority-down category-keep deadline-up) (tags priority-down category-keep deadline-up) (search category-keep)) Le 2 avril 2022 23:16:23 GMT

Re: org-agenda todos list sorted by earliest deadline first

2022-04-02 Thread Samuel Wales
perhaps try including your code and the emacs and org versins. i think there have been recentish changes insorting strategy. might also try paradoxically deadline-down etc. On 4/2/22, Sébastien Gendre wrote: > Hello. > > In org-agenda, for the todos list, I try to have tasks with deadlines at >

org-agenda todos list sorted by earliest deadline first

2022-04-02 Thread Sébastien Gendre
Hello. In org-agenda, for the todos list, I try to have tasks with deadlines at top. With earliest deadline first. But, when I customize the variable "org-agenda-sorting-strategy" by adding "deadline-up" for "todo" and "tags", it has no effect. Any advice ?