From fac78a8fc92b27c37e678ee70824eb5f70ceee8b Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 2 Dec 2025 07:55:21 -0600 Subject: feat(calendar-sync): multi-calendar support with property tests Added multi-URL calendar sync supporting Google and Proton calendars. Each calendar syncs to separate file with per-calendar state tracking. Added 13 property-based tests for RRULE expansion. Total: 150 tests passing. --- modules/org-agenda-config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/org-agenda-config.el') diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index de8a89c8..4be4db9e 100644 --- a/modules/org-agenda-config.el +++ b/modules/org-agenda-config.el @@ -142,7 +142,7 @@ improves performance from several seconds to instant." (setq cj/org-agenda-files-building t) (let ((start-time (current-time))) ;; Reset org-agenda-files to base files - (setq org-agenda-files (list inbox-file schedule-file gcal-file)) + (setq org-agenda-files (list inbox-file schedule-file gcal-file pcal-file)) ;; Check all projects for scheduled tasks (cj/add-files-to-org-agenda-files-list projects-dir) @@ -335,7 +335,7 @@ This allows a line to show in an agenda without being scheduled or a deadline." :init ;; Initialize org-agenda-files with base files before chime loads ;; The full list will be built asynchronously later - (setq org-agenda-files (list inbox-file schedule-file gcal-file)) + (setq org-agenda-files (list inbox-file schedule-file gcal-file pcal-file)) ;; Debug mode (keep set to nil, but available for troubleshooting) (setq chime-debug nil) -- cgit v1.2.3