diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-29 09:21:06 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-29 09:21:06 -0500 |
| commit | b4c8de63ca4e0409325f1504c61b6e7a6fc460b6 (patch) | |
| tree | 30063af631c6162f1c927932cec4125ec8ba1b2f /modules/org-agenda-config.el | |
| parent | 980e21b9f0861c30ff4b371edf48c7f8bc1f1944 (diff) | |
fix: update chime variable names after breaking changes
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 <noreply@anthropic.com>
Diffstat (limited to 'modules/org-agenda-config.el')
| -rw-r--r-- | modules/org-agenda-config.el | 4 |
1 files 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) |
