From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Is there an alternate means of defining categories? Date: Wed, 26 Mar 2008 19:12:19 -0400 Message-ID: <87fxudf5bg.fsf@gollum.intra.norang.ca> References: <20080326222200.GB20809@austin.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JeenD-0003D1-DV for emacs-orgmode@gnu.org; Wed, 26 Mar 2008 19:12:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JeenB-000392-Or for emacs-orgmode@gnu.org; Wed, 26 Mar 2008 19:12:27 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JeenB-00038o-F5 for emacs-orgmode@gnu.org; Wed, 26 Mar 2008 19:12:25 -0400 Received: from mho-02-bos.mailhop.org ([63.208.196.179]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JeenB-00054q-Ib for emacs-orgmode@gnu.org; Wed, 26 Mar 2008 19:12:25 -0400 In-Reply-To: <20080326222200.GB20809@austin.rr.com> (subopt@gmail.com's message of "Wed\, 26 Mar 2008 17\:22\:00 -0500") 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: subopt@gmail.com Cc: emacs-orgmode@gnu.org subopt@gmail.com writes: > I'm looking for a way to define categories, aside from using the > '#+CATEGORY: Whatever' method. I'd like to keep all the comments and > other visual clutter out of the actual data portions of my > files. Using the 'odd' and 'hide leading stars' has helped a lot. If i > could just move the category definitions elsewhere, and still have > multiple categores per file, then i'd be free and clear of all my line > noise. I don't use #+CATEGORY: anymore. I use properties. I define the top level task with a specific category and all subtasks inherit the same property (and therefore are in the same category unless otherwise specified) The following are from my todo.org file: * Tasks :newtask: :PROPERTIES: :CATEGORY: Tasks :ARCHIVE: %s_archive::* Miscellaneous :END: * Anniversaries and Holidays :notaproject: *** Birthdays :PROPERTIES: :CATEGORY: Birthday :END: * Appointments :notaproject: :PROPERTIES: :CATEGORY: Appt :ARCHIVE: %s_archive::* Appointments :END: * Basement :@home: :PROPERTIES: :CATEGORY: Basement :ARCHIVE: %s_archive::* Basement :END: * Health :@home: :PROPERTIES: :CATEGORY: Health :ARCHIVE: %s_archive::* Health :END: The :PROPERTIES:...:END: is normally folded and is not exported (if you export your org files) HTH, Bernt