Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not showing deadline items #156

Open
AtomicNess123 opened this issue Feb 9, 2023 · 1 comment
Open

Not showing deadline items #156

AtomicNess123 opened this issue Feb 9, 2023 · 1 comment

Comments

@AtomicNess123
Copy link

DEADLINES items are not displayed for some reason.
My setting is: (setq cfw:org-agenda-schedule-args '(:timestamp))

Any help, thanks!

@ml729
Copy link

ml729 commented Mar 4, 2023

calfw uses org-agenda-get-day-entries to get entries from org-agenda. It is a bit confusing, but it appears that with just :timestamp both deadline and scheduled entries are not collected, it will collect entries with just a timestamp, like the third entry below:

* entries
** test
    DEADLINE: <2023-03-03 Fri>
** test 2
    SCHEDULED: <2023-03-03 Fri>
** test 3
    <2023-03-03 Fri>

You need to add :deadline (and :scheduled if you want that as well) to your list in cfw:org-agenda-schedule-args in order for deadline entries to be included.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants