From b4c8de63ca4e0409325f1504c61b6e7a6fc460b6 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. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- 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 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