From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David Feest" Subject: Interaction with Remember Date: Sat, 3 May 2008 14:17:07 +0200 Message-ID: <20080503121707.GB20405@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JsGdt-0007wb-Om for emacs-orgmode@gnu.org; Sat, 03 May 2008 08:15:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JsGdr-0007ue-St for emacs-orgmode@gnu.org; Sat, 03 May 2008 08:15:05 -0400 Received: from [199.232.76.173] (port=42246 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JsGdr-0007uV-Ez for emacs-orgmode@gnu.org; Sat, 03 May 2008 08:15:03 -0400 Received: from mail-in-17.arcor-online.net ([151.189.21.57]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JsGdr-0000TT-1Z for emacs-orgmode@gnu.org; Sat, 03 May 2008 08:15:03 -0400 Received: from mail-in-15-z2.arcor-online.net (mail-in-15-z2.arcor-online.net [151.189.8.32]) by mail-in-17.arcor-online.net (Postfix) with ESMTP id 728172BC2CF for ; Sat, 3 May 2008 14:15:00 +0200 (CEST) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mail-in-15-z2.arcor-online.net (Postfix) with ESMTP id 5D6CA7242E1 for ; Sat, 3 May 2008 14:15:00 +0200 (CEST) Received: from arcor.de (dslb-088-072-215-105.pools.arcor-ip.net [88.72.215.105]) (Authenticated sender: david.feest@arcor.de) by mail-in-09.arcor-online.net (Postfix) with ESMTP id 33E533425E6 for ; Sat, 3 May 2008 14:15:00 +0200 (CEST) Content-Disposition: inline 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 Hello, I'm new to org and like it very much! thanks for this fine and useful package -- trying out all the possibilities will keep me occupied for months to come! Sorry about a very basic question that I can't seem to figure out myself. I'm trying to integrate remember.el according to the documentation of org-mode (excellent documentation BTW!). It seems to work fine at first: When I type in: C-cr I'm being asked to chose between different options. Choosing "todo" gives me something like the following buffer: ----- ## Filing location: Select interactively, default, or last used: ## C-u C-c C-c to select file and header location interactively. ## C-c C-c "~/texte/org/gtd.org" -> "* TODO" ## C-u C-u C-c C-c "???" -> "* ???" ## To switch templates, use `C-c r'. To abort use `C-c C-k'. * TODO [[file:~/texte/katja-cajanov.tex]] ---- However, typing in C-c C-c results in a promt asking which file I want to use in ~/texte/org. And actually choosing the file gtd.org results in the file to be overwritten. Shouldn't the entry jus be added to the file instead promting for a file and then overwriting it? The settings in my .emacs file concerning remember-mode look like this: (require 'remember) (org-remember-insinuate) (setq remember-annotation-functions '(org-remember-annotation)) (setq remember-handler-functions '(org-remember-handler)) (add-hook 'remember-mode-hook 'org-remember-apply-template) (setq org-directory "~/texte/org") (setq org-default-notes-file (concat org-directory "notes.org")) (setq org-remember-templates '(("Todo" ?t "* TODO %?\n %i\n %a" "/Users/david/texte/org/gtd.org" "Todo") ("Idee" ?i "* %^{Title}\n %i\n %a" "/Users/david/texte/org/gtd.org" "Ideas"))) Any idea what the reason could be? Thanks in advance! David