From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Corneli Subject: calendar (backwards-)integration Date: Thu, 20 Nov 2014 11:46:12 +0000 Message-ID: <87h9xut7qz.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrQBn-0002iX-4e for emacs-orgmode@gnu.org; Thu, 20 Nov 2014 06:46:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XrQBh-0001MF-BD for emacs-orgmode@gnu.org; Thu, 20 Nov 2014 06:46:19 -0500 Received: from mail-wi0-x229.google.com ([2a00:1450:400c:c05::229]:56472) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrQBh-0001Lz-4E for emacs-orgmode@gnu.org; Thu, 20 Nov 2014 06:46:13 -0500 Received: by mail-wi0-f169.google.com with SMTP id r20so11687253wiv.4 for ; Thu, 20 Nov 2014 03:46:11 -0800 (PST) Received: from Teacup (cpc2-flit3-2-0-cust79.9-1.cable.virginm.net. [213.105.32.80]) by mx.google.com with ESMTPSA id h13sm6278670wiw.4.2014.11.20.03.46.10 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 20 Nov 2014 03:46:10 -0800 (PST) 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 The Org Mode docs [1] say: | In order to include entries from the Emacs diary into Org mode's | agenda, you only need to customize the variable | | (setq org-agenda-include-diary t) Is there any way to include data in the other direction, so that scheduled events are marked in the calendar? It's possible to display scheduled events in Calfw: (add-to-list 'load-path "~/.../emacs-calfw") (require 'calfw) (require 'calfw-org) ;; for convenience: (defalias 'org-calendar 'cfw:open-org-calendar) But I'd prefer to do this with the built-in calendar if possible. Joe [1]: http://orgmode.org/manual/Weekly_002fdaily-agenda.html