From a002b7546d7548976e400e15e18143643c6d57d5 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Wed, 29 Oct 2025 09:21:06 -0500 Subject: fix: update chime variable names after breaking changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update configuration to use renamed chime variables: - chime-modeline-lookahead → chime-modeline-lookahead-minutes - Update comment referencing chime-tooltip-lookahead-hours These variables were renamed in chime.el commit 2a89893 (feat: comprehensive test improvements and lookahead refactoring). Fixes issue where modeline wasn't displaying after Emacs restart because the old variable name had no effect. --- modules/org-agenda-config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/org-agenda-config.el b/modules/org-agenda-config.el index 211ff4fe..d0042fda 100644 --- a/modules/org-agenda-config.el +++ b/modules/org-agenda-config.el @@ -268,11 +268,11 @@ This allows a line to show in an agenda without being scheduled or a deadline." ;; Modeline display: show upcoming events within 2 hours (setq chime-enable-modeline t) - (setq chime-modeline-lookahead 180) + (setq chime-modeline-lookahead-minutes 180) (setq chime-modeline-format " ⏰ %s") ;; Tooltip settings: show up to 20 upcoming events (regardless of how far in future) - ;; chime-modeline-tooltip-lookahead defaults to 525600 (1 year) - effectively unlimited + ;; chime-tooltip-lookahead-hours defaults to 8760 (1 year) - effectively unlimited (setq chime-modeline-tooltip-max-events 20) ;; Modeline content: show title and countdown only (omit event time) -- cgit v1.2.3