From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeffrey Brent McBeth Subject: Re: org-capture, datetree, and tags Date: Wed, 20 Feb 2013 06:43:28 -0500 Message-ID: <20130220114328.GD26449@broggs.org> References: <20130219122529.GB26449@broggs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:34150) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U885V-0007Y5-G6 for emacs-orgmode@gnu.org; Wed, 20 Feb 2013 06:43:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U885P-0004WM-QN for emacs-orgmode@gnu.org; Wed, 20 Feb 2013 06:43:49 -0500 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.122]:17858) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U885P-0004WH-Mo for emacs-orgmode@gnu.org; Wed, 20 Feb 2013 06:43:43 -0500 Received: from williwaw ([10.0.1.2]) by broggs.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1U885M-0001au-FE for emacs-orgmode@gnu.org; Wed, 20 Feb 2013 06:43:42 -0500 Received: from mcbeth by williwaw with local (Exim 4.80) (envelope-from ) id 1U885A-0004EE-Mw for emacs-orgmode@gnu.org; Wed, 20 Feb 2013 06:43:28 -0500 Content-Disposition: inline In-Reply-To: <20130219122529.GB26449@broggs.org> 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 On Tue, Feb 19, 2013 at 07:25:29AM -0500, Jeffrey Brent McBeth wrote: > I'm trying to capture into a datetree using org-capture, but if my tree has a tag on it (in particular noexport), then it creates a new datetree instead of using the one I have. I have verified that this still occurs under latest (7.9.3e-920-gce79e pulled 5:50am EST) with emacs 24.1.1 (Ubuntu packaged). Are my expectations wrong that it should be inserting into the original tree, and there is perhaps another way to tag a heirarchy to not be exported that I should be using? If this is a bug, is there additional information I need to supply to assist in the debugging? Am I asking in the right place? Thanks for your attention, Jeffrey McBeth >Example .emacs: >(global-set-key "\C-cc" 'org-capture) >(setq org-capture-templates > '(("t" "Test" plain (file+datetree "~/Test.org") > "%^{Greeting} World > I'm going to work this time"))) > >Example Test.org: >* 2013 :noexport: >** 2013-02 February >*** 2013-02-19 Tuesday >Hello World >I'm going to work this time > >So, based on the above, if I type C-cct Silly C-cc, I'll get this: > >* 2013 :noexport: >** 2013-02 February >*** 2013-02-19 Tuesday >Hello World >I'm going to work this time >* 2013 >** 2013-02 February >*** 2013-02-19 Tuesday >Silly World >I'm going to work this time