From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Is there any way to active the reminder of Org mode in Emacs? Date: Tue, 15 Apr 2008 10:51:43 -0400 Message-ID: <87d4ornpc0.fsf@gollum.intra.norang.ca> References: <877iezme9u.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JlmVh-0001u4-FU for emacs-orgmode@gnu.org; Tue, 15 Apr 2008 10:51:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JlmVf-0001rW-Pt for emacs-orgmode@gnu.org; Tue, 15 Apr 2008 10:51:49 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JlmVf-0001rJ-NZ for emacs-orgmode@gnu.org; Tue, 15 Apr 2008 10:51:47 -0400 Received: from mho-02-bos.mailhop.org ([63.208.196.179]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JlmVf-0007Jj-Bx for emacs-orgmode@gnu.org; Tue, 15 Apr 2008 10:51:47 -0400 In-Reply-To: <877iezme9u.fsf@gmail.com> (DigitalPig's message of "Tue\, 15 Apr 2008 09\:35\:57 -0400") 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: DigitalPig Cc: emacs-orgmode@gnu.org DigitalPig writes: > I am using Emacs 22.2 with Org Mode 5.23a. I am wondering if Org mode > have the same function as diary in Emacs. That is if you have some > events or appointment. Diary pop-ups a window indicating that. How can I > let Org to remind me the coming events as diary? Thanks! Hi! I don't use the diary at all anymore. I have the following setup in my .emacs to create appointment reminders for org-mode ------------------------------------------------------------------------ ;; Get appointments for today (defun my-org-agenda-to-appt () (interactive) (setq appt-time-msg-list nil) (org-agenda-to-appt)) (add-hook 'org-finalize-agenda-hook 'my-org-agenda-to-appt) (my-org-agenda-to-appt) (appt-activate t) ------------------------------------------------------------------------ -Bernt