alphapapa / org-super-agenda

Supercharge your Org daily/weekly agenda by grouping items
GNU General Public License v3.0
1.33k stars 107 forks source link

Don't display active datestamps in time grid section #214

Open wuqui opened 2 years ago

wuqui commented 2 years ago

I have some TODO items with active datestamps without SCHEDULED: keyword. I'm using this when I want to specify date ranges like this:

* TODO foo
<2022-01-30 Sun>-<2022-02-01 Tue>

I don't want these items to be included in the time grid section because they don't have times, just dates.

In the classic agenda views, this works. These items are sorted normally among all other non-timed items.

However, in org-super-agenda mode, these items are included in the time grid section.

I use the following config:

(setq org-super-agenda-groups
      '((:name "time" :time-grid t)
        (:name "overdue" :scheduled past :time-grid t)
        (:name "prio" :auto-priority)
        (:name "rout" :tag "rout")
        (:name "work" :tag "work")
        (:name "privat" :tag "privat")
        (:name "method" :tag "method")))

Is there a way to specify that the time grid should only include items with times, not these date-based ones?

EDIT: Sorry, just discovered that there is indeed a closely related open issue: #204. Feel free to close or delete my issue here. Had not found this other one before despite searching for quite a while.

alphapapa commented 9 months ago

Thanks.