From mboxrd@z Thu Jan 1 00:00:00 1970 From: Renzo Been =?utf-8?b?Oi0p?= Subject: Re: Best way to implement Keywords feature Date: Fri, 6 Nov 2009 13:28:25 +0000 (UTC) Message-ID: References: <7bef1f890911051442h28d45647h4f128a241d4e0116@mail.gmail.com> <20524da70911051458u7e20e0ddy66cdec034406fa4e@mail.gmail.com> <7bef1f890911051525x72620078h292a7e6dfa130118@mail.gmail.com> <20524da70911051540o52c98638ocbcef1ff3fe4c008@mail.gmail.com> <7bef1f890911060348s2918f58au201ef8afdd8acd62@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N6Os9-00068E-Ke for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 08:29:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N6Os4-00061h-T0 for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 08:29:00 -0500 Received: from [199.232.76.173] (port=43708 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N6Os4-00061J-DI for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 08:28:56 -0500 Received: from lo.gmane.org ([80.91.229.12]:55441) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N6Os4-0007Yg-0Y for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 08:28:56 -0500 Received: from list by lo.gmane.org with local (Exim 4.50) id 1N6Os1-000393-H5 for emacs-orgmode@gnu.org; Fri, 06 Nov 2009 14:28:53 +0100 Received: from ip56507cb9.direct-adsl.nl ([86.80.124.185]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Nov 2009 14:28:53 +0100 Received: from swangdoodles by ip56507cb9.direct-adsl.nl with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Nov 2009 14:28:53 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Alan E. Davis gmail.com> writes: > Thank you Samuel > Samuel Wales gmail.com> wrote: > > For your topic, I just add words.  Then I use m-x org-agenda s. > > This is pretty close to what I have in mind.  And I see there are several > possible routes, a couple of which seem amenable to a custom agenda > command.I think what I want to do is use a search for a Keyword marker > (such as "KEYWORDS::") then do the secondary search for the specific > keyword. Thank you for the suggestion.Alan Hi Alan, Another way to set-up keywords could be by using categories. It's a rather old-fashioned way of using org-mode... But you don't need long lines of tags or properties... See the example below. ----- * Topic 1 #+CATEGORY: keyword1 <2009-11-06 Fri> * Topic 2 #+CATEGORY: keyword3 keyword3 <2009-11-07 Sat> ----- When opening an agenda view, the agenda will look like this. No searching needed... ----- Month-agenda (W45-W49): Friday 6 November 2009 keyword1: Topic 1 Saturday 7 November 2009 keyword3 keyword3:Topic 2 ----- Hope this helps, Renzo