From mboxrd@z Thu Jan 1 00:00:00 1970 From: Memnon Anon Subject: Capture while Buffer is narrowed to subtree Date: Thu, 17 Feb 2011 13:45:08 +0000 (UTC) Message-ID: <87aahuu7ea.fsf@mean.albasani.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=60729 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pq4Al-00052U-Tv for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 08:45:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pq4Ah-00051z-By for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 08:45:31 -0500 Received: from lo.gmane.org ([80.91.229.12]:48855) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pq4Ah-000510-2M for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 08:45:27 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Pq4Ae-0001W2-37 for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 14:45:24 +0100 Received: from e178218048.adsl.alicedsl.de ([85.178.218.48]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Feb 2011 14:45:24 +0100 Received: from gegendosenfleisch by e178218048.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Feb 2011 14:45:24 +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 Hi, I've been working on a large subtree of my main orgfile while it was narrowed [C-x n s]. While doing so, I wanted to capture some information which usually ends up under "* Inbox" at the bottom of that file. This time, the information ended up in the narrowed buffer with a new "* Inbox" added. I only noticed after a while that my captured TODOs were not where I expected them to be. I know why this is happening (I guess :) but I was wondering if this was intended behaviour. If so, maybe a footnote should be added to the manual that hints at possible side effects of `C-x n s'? Memnon capture template #+begin_src emacs-lisp (setq org-capture-templates '(("t" "Todo" entry (file+headline "~/life/organizer.org" "Inbox") "* TODO %?\n %U\n %i\n %a") ("o" "Someday" entry (file+headline "~/life/organizer.org" "Inbox") "* SOMEDAY %?\n %U\n %i\n %a") ("a" "Appointment" entry (file+headline "~/life/organizer.org" "Inbox") "* APPT %?\n %^T\n %U\n %i\n %a") ("b" "Bookmark" entry (file+headline "~/life/bookmarks.org" "Inbox") "* %a %?\n %u") ...)) #+end_src Org-mode version 7.4 GNU Emacs 23.2.1 (i486-pc-linux-gnu, GTK+ Version 2.20.0) of 2010-12-11 on raven, modified by Debian