From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Christopher W. Ryan" Subject: Re: searching properties, not tags Date: Thu, 27 Dec 2012 15:52:25 -0500 Message-ID: <50DCB509.9090705@binghamton.edu> References: <50DC83D2.6090007@binghamton.edu> <87mwwz5kt9.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37608) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToKRM-00066Q-T6 for emacs-orgmode@gnu.org; Thu, 27 Dec 2012 15:52:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ToKRH-00073a-A4 for emacs-orgmode@gnu.org; Thu, 27 Dec 2012 15:52:32 -0500 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.122]:31500) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToKRH-00073N-5x for emacs-orgmode@gnu.org; Thu, 27 Dec 2012 15:52:27 -0500 In-Reply-To: <87mwwz5kt9.fsf@bzg.ath.cx> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Well, that put me on the right track. I wasn't looking for a persistent custom search command, just one I could execute ad hoc, since sometimes I'd be looking for tigers and sometimes for bears, etc. But with this to go on, I found that C-c a m species="tiger" does what I want. Previously, my problem was I was not using the quotes. Thanks. --Chris Bastien wrote: > Hi Christopher, > > "Christopher W. Ryan" writes: > >> How would I search for all the tigers? > > (setq org-agenda-custom-commands > '(("o" "List of tigers" > ((tags "+species=\"tiger\"))))) > > HTH, >