From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Subject: org-mode remember and plain text backend Date: Wed, 1 Apr 2009 17:40:31 -0400 Message-ID: <2e177a690904011440j1a1aacf7g9bf03d9339b6c700@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lp8Aj-0000Db-6y for emacs-orgmode@gnu.org; Wed, 01 Apr 2009 17:40:33 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lp8Ai-0000Cw-Ks for emacs-orgmode@gnu.org; Wed, 01 Apr 2009 17:40:32 -0400 Received: from [199.232.76.173] (port=51200 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lp8Ai-0000Cn-G6 for emacs-orgmode@gnu.org; Wed, 01 Apr 2009 17:40:32 -0400 Received: from yw-out-1718.google.com ([74.125.46.155]:1525) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lp8Ai-0001ib-2Q for emacs-orgmode@gnu.org; Wed, 01 Apr 2009 17:40:32 -0400 Received: by yw-out-1718.google.com with SMTP id 9so183511ywk.66 for ; Wed, 01 Apr 2009 14:40:31 -0700 (PDT) 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, Thanks for org-mode. I've tried any number of organization tools and org-mode just might be the one... I just switched to emacs (because of org-mode) from another well-known editor, and I'm trying to take baby steps. What I would like to be able to do is to have a remember template that allows me to write a remind reminder to my reminders file. I realize that there is a script to translate org-mode to remind, and that there is an emacs-based solution, but for now I just want to be able to quickly write to my remind file. I've figured out that there are different backends to remember, but can I use these with org-remember? I can't get the org-remember template to write to a non-org-mode file. these are my settings: ;; For remember (org-remember-insinuate) (setq org-directory "~/start/admin/org/") (setq org-default-notes-file (concat org-directory "/tasks.org")) (define-key global-map "\C-\M-r" 'org-remember) (setq org-remember-templates '(("Task" ?t "* TODO %? %i\n" nil "Tasks") ("Idea" ?i "* %^{Title}\n %i\n %t" "ideas.org" "Ideas") ("Reading" ?r "* TODO %? %i\n %a" "readings.org" "Readings") ("Reminder" ?m "REM %^t AT %^{Time} DURATION %^{Duration} MSG %i\n" "~/start/code/dotfiles/.reminders") )) Best regards, Alexander