From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) Subject: Re: Best practices to get reminders? Date: Mon, 06 Apr 2015 23:06:49 -0400 Message-ID: <87a8ykiqly.fsf@yale.edu> References: <87wq1o8xac.fsf@vostro.rath.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37309) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfJqw-0000iy-Lc for emacs-orgmode@gnu.org; Mon, 06 Apr 2015 23:07:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YfJqs-0003IJ-MD for emacs-orgmode@gnu.org; Mon, 06 Apr 2015 23:07:02 -0400 Received: from plane.gmane.org ([80.91.229.3]:43437) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfJqs-0003I1-G3 for emacs-orgmode@gnu.org; Mon, 06 Apr 2015 23:06:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YfJqq-000897-5v for emacs-orgmode@gnu.org; Tue, 07 Apr 2015 05:06:56 +0200 Received: from nat-130-132-173-151.central.yale.edu ([130.132.173.151]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 07 Apr 2015 05:06:56 +0200 Received: from jorge.alfaro-murillo by nat-130-132-173-151.central.yale.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 07 Apr 2015 05:06:56 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nikolaus Rath writes: > However, there's one thing where I feel lost. I don't expect to > be editing my orgmode files on a daily basis (at least not yet), > so how can I make sure that I don't miss an important deadline? > It seems to me that it doesn't help much if instead of worrying > to forget a deadline I now have to worry about forgetting to > check my org-mode agenda... > > How do other people handle this? Is everyone else opening and > working on their org files daily so that this becomes a > non-issue? You can put this after your org-agenda-files configuration in your .emacs: #+BEGIN_SRC emacs-lisp (appt-activate 1) (org-agenda-to-appt) #+END_SRC Then you will be reminded of things in your org files, before the appointment time (I think 12 min is the default). You could also add this, so that the appointments refresh and new get added every time that you call the agenda: #+BEGIN_SRC emacs-lisp (add-hook 'org-agenda-finalize-hook (lambda () (org-agenda-to-appt t))) #+END_SRC Best, -- Jorge.