From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Compare a timestamp with existing agenda entries. Date: Thu, 24 Jan 2013 15:34:07 +0100 Message-ID: <874ni66468.fsf@bzg.ath.cx> References: <87k3rf3lse.fsf@yahoo.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:58009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TyNsb-0006Ma-0N for emacs-orgmode@gnu.org; Thu, 24 Jan 2013 09:34:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TyNsY-0001R7-1C for emacs-orgmode@gnu.org; Thu, 24 Jan 2013 09:34:12 -0500 Received: from mail-wi0-f177.google.com ([209.85.212.177]:58830) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TyNsX-0001Qj-QF for emacs-orgmode@gnu.org; Thu, 24 Jan 2013 09:34:09 -0500 Received: by mail-wi0-f177.google.com with SMTP id hm2so495785wib.16 for ; Thu, 24 Jan 2013 06:34:09 -0800 (PST) In-Reply-To: <87k3rf3lse.fsf@yahoo.fr> (Nicolas Richard's message of "Mon, 14 Jan 2013 15:02:25 +0100") 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: Nicolas Richard Cc: emacs-orgmode@gnu.org Hi Nicolas, "Nicolas Richard" writes: > My use case is to ease the process of filling in a "doodle". I already > wrote a few lines to import the proposed dates of a given doodle into > org-mode timestamps (see here: https://gist.github.com/4529894). Atm I > have to open (C-c C-o) each time stamp to see if there's a clash. > > Any comment are welcome ! Thanks for your attention, Here is what I do. I have this in my Emacs config: (setq calendar-mark-diary-entries-flag t) And I use a simple ~/.diary file containing this: %%(org-diary :scheduled :deadline :sexp :timestamp) ~/org/rdv.org That way, each time I open the calendar, days with scheduled/deadlined/timestamped entries in rdv.org are highlighted. This is not perfect because it does not tell the time of these appointments -- so I just added a new binding in the Org read date prompt: you can now use `?' to view the diary entries on the date the cursor here. HTH, -- Bastien