emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Bug: Agenda: Sorting TODOs (with tags) by effort does not work [


From: Nicolas Goaziou
Subject: Re: [O] Bug: Agenda: Sorting TODOs (with tags) by effort does not work [8.3.6 (8.3.6-7-g4d7d52-elpaplus @ /home/luke/.emacs.d/elpa/org-plus-contrib-20161010/)]
Date: Sun, 16 Oct 2016 21:32:46 +0200

Hello,

Luke <address@hidden> writes:

> I have the following custom agenda command set up:
>
> ===================================================
> (setq org-agenda-custom-commands
>       '(("x" "TODOs sorted by effort" todo "TODO"
>      ((org-agenda-sorting-strategy
>        '(effort-down))))))
> ===================================================
>
> I would expect this to show me all my current TODOs, sorted by the
> EFFORT property (in descending order).
>
> I also have the following org-mode file:
>
> ===================================================
> * TASKS
> ** TODO Task 1
>    :PROPERTIES:
>    :Effort:   0:02
>    :END:
> ** TODO Task 2
>    :PROPERTIES:
>    :Effort:   0:10
>    :END:
> ** TODO Task 3
>    :PROPERTIES:
>    :Effort:   0:30
>    :END:
> ** TODO Task 4
>    :PRyOPERTIES:
>    :Effort:   0:05
>    :END:
> ===================================================
>
> When I execute the agenda command (M-x org-agenda RET x), then I get the
> following result (as expected):
>
> ===================================================
> Global list of TODO items of type: TODO
> Available with `N r': (0)[ALL] (1)TODO (2)DONE
>   gtd:        TODO Task 3
>   gtd:        TODO Task 2
>   gtd:        TODO Task 4
>   gtd:        TODO Task 1
> ===================================================
>
> *However*, then I add some tags to the TODO items, such as the
> following:
>  
> ===================================================
> * TASKS
> ** TODO Task 1
>    :PROPERTIES:
>    :Effort:   0:02
>    :END:
> ** TODO Task 2                :MY_TAG:
>    :PROPERTIES:
>    :Effort:   0:10
>    :END:
> ** TODO Task 3
>    :PROPERTIES:
>    :Effort:   0:30
>    :END:
> ** TODO Task 4                :@ONLINE:
>    :PROPERTIES:
>    :Effort:   0:05
>    :END:
> ===================================================
>
> Now when I execute the same agenda command I get the following:
>
> ===================================================
> Global list of TODO items of type: TODO
> Available with `N r': (0)[ALL] (1)TODO (2)DONE
>   gtd:        TODO Task 2               :MY_TAG:
>   gtd:        TODO Task 4               :@ONLINE:
>   gtd:        TODO Task 3
>   gtd:        TODO Task 1
> ===================================================
>
>
> I wouldn't expect the order of items in the agenda to change. However,
> even though I haven't specified any tag-based sorting strategy, it seemsas if 
> the tags are still having some effect on the way that the agenda
> is sorted.

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou



reply via email to

[Prev in Thread] Current Thread [Next in Thread]