emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] TODO agenda filtering on priority?


From: James Harkins
Subject: Re: [O] TODO agenda filtering on priority?
Date: Sun, 08 Apr 2012 22:23:20 +0800
User-agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (Gojō) APEL/10.7 Emacs/23.1 (x86_64-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO)

At Sat, 7 Apr 2012 21:22:59 +0200,
Michael Brand wrote:
> On Sat, Apr 7, 2012 at 17:59, James Harkins <address@hidden> wrote:
> > How to make a TODO agenda search that will show only #A priority items? (Or 
> > #B or #C?)
> > I see in the manual how to search on tags or properties, but not priorities.
> 
> The manual has an example for matching PRIORITY, linked from several
> other manual pages about searches, here:
> http://orgmode.org/manual/Matching-tags-and-properties.html

And my solution, for now: just a separate block for priority A. Priority B and 
C, I guess, don't really need to be in separate blocks.

 '(org-agenda-custom-commands
 (quote 
   (
     ("0" "Block TODO" (
       (tags-todo "PRIORITY=\"A\"" (
         (org-agenda-overriding-header "TOP PRIORITY")
         (org-agenda-sorting-strategy (quote (user-defined-up)))
       ))
       (tags-todo "-PRIORITY=\"A\"" (
         (org-agenda-overriding-header "Others")
         (org-agenda-sorting-strategy (quote (priority-down user-defined-up)))
       ))
     ) nil nil)
   )
 ))

Thanks for the tips!
James


--
James Harkins /// dewdrop world
address@hidden
http://www.dewdrop-world.net

"Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal."  -- Whitman

blog: http://www.dewdrop-world.net/words
audio clips: http://www.dewdrop-world.net/audio
more audio: http://soundcloud.com/dewdrop_world/tracks



reply via email to

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