Re: [Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Xin Shi
Hi Thomas, Thank you! I'll read more about the remember package then. Xin Thomas Baumann wrote: I have customized my remember templates: '(org-remember-store-without-prompt t) '(org-remember-templates (quote (("Todo" 116 "* TODO %? %u" "~/org/diary.org" "Tasks") ("Note" 110 "* %? %u" "~

[Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Thomas Baumann
I have customized my remember templates: '(org-remember-store-without-prompt t) '(org-remember-templates (quote (("Todo" 116 "* TODO %? %u" "~/org/diary.org" "Tasks") ("Note" 110 "* %? %u" "~/org/tb.org" "Notes") ("Appt" 97 "* %? %^T %^{Ort}" "~/org/diary.org" "Appointments") ("Call" 99

Re: [Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Xin Shi
Hi Tomas, Thanks for your reply! I tried that, and when I called the remember, it gave me a buffer. But when I finish that with "C-c C-c", it prompted me asking about the page. I don't know how to deal with that. By the way, I'm using the remember with the planner package, it might be due t

[Orgmode] Re: Add to do item in the Org Agenda Day Grid

2008-03-26 Thread Thomas Baumann
Hi, I usually use remember for this kind of stuff: (require 'remember) (add-hook 'remember-mode-hook 'org-remember-apply-template) (define-key global-map [(control meta ?r)] 'remember) You might want to have a look into the info file to take full advantage of the flexibility of this approach.