Created
December 1, 2014 13:09
-
-
Save kiwanami/9c972cf7df83ee7f76f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(let* ((source1 | |
(lexical-let ((file "./some-schedule.org")) | |
(make-cfw:source | |
:name (concat "Org:" "TEST") | |
:data (lambda (begin end) | |
(let ((org-agenda-files (list file))) | |
(cfw:org-schedule-period-to-calendar begin end)))))) | |
(cp (cfw:create-calendar-component-buffer | |
:view 'month | |
:contents-sources (list source1) | |
:custom-map cfw:org-schedule-map | |
:sorter 'cfw:org-schedule-sorter))) | |
(switch-to-buffer (cfw:cp-get-buffer cp))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment