emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] Custom agenda view - filter by priority AND scheduled date


From: Barton
Subject: [Orgmode] Custom agenda view - filter by priority AND scheduled date
Date: Wed, 28 Apr 2010 16:36:16 +0300

Greetings org-mode,

In my workflow, I move by priorities and scheduled dates for the tasks. My goal with this issue is to have a view that would show me only the tasks with certain priority(-ies) that are scheduled for today (or are overdue, as in  (org-agenda-repeating-timestamp-show-all t) ).

My feeble attempt here:

(setq org-agenda-custom-commands
      '(("c" "Custom"
         ((agenda "" ((org-agenda-ndays 1))) 
          (tags-todo "+PRIORITY=\"A\"")))
;; ...other commands here
        ))

... displays a usual daily agenda and following it, _all_ the #A tasks that I have. Clearly not what has been intended.

After wrapping my head around it, I suspect that the only way to achieve the desired functionality is through using/modifying org-agenda.el functions to have a filter, similar to that in 'C-c a a' view for tags ("/" - Tab), only this time for priorities.

Is this the best way to do this and how would one go about it? Perhaps there exists a better way to achieve the same functionality?


Will be grateful for any assistance,
Barton

reply via email to

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