From mboxrd@z Thu Jan 1 00:00:00 1970 From: jemarch@gnu.org Subject: Re: [OT] How do you keep your reference data? Date: Mon, 09 Nov 2009 13:54:21 +0100 Message-ID: <877htzhn9e.wl%jemarch@gnu.org> References: <1e5bcefd0911081424p12eb6fa9te57ff4cfeb83fcdd@mail.gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N7TnS-0005iE-7n for emacs-orgmode@gnu.org; Mon, 09 Nov 2009 07:56:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N7TnR-0005ht-RB for emacs-orgmode@gnu.org; Mon, 09 Nov 2009 07:56:37 -0500 Received: from [199.232.76.173] (port=60040 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N7TnR-0005hq-Nx for emacs-orgmode@gnu.org; Mon, 09 Nov 2009 07:56:37 -0500 In-Reply-To: <1e5bcefd0911081424p12eb6fa9te57ff4cfeb83fcdd@mail.gmail.com> 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: Marcelo de Moraes Serpa Cc: Org Mode Information that has no potential next action associated but that still has potential reference value and that you'd like to keep around, how and where do you keep it ? For that purpose I use an org file called ref.org with the following structure: --- begin of ref.org -*- mode: org -*- * 0 :REF0: * 1 :REF1: ... * A :REFA: * B :REFB: ... * Z :REFZ: --- end of ref.org The second-level headers are then the knowledge entries. To see the entries in the agenda I use the following custom: (setq org-agenda-custom-commands '( ... other entries ... ("r0" tags "+REF0" nil) ... ("ra" tags "+REFA" nil) ("rb" tags "+REFB" nil) ... ("rz" tags "+REFZ" nil))) Then I can use C-aC-cr, where C-aC-c is the agenda command in my system and LETTER is the letter (or digit) I want to see the entries for. It is not very sophisticated, but it works nicely for me :) -- Jose E. Marchesi jemarch@gnu.org GNU Project http://www.gnu.org