emacs/var/elfeed/db/data/a2/a2a044562285767dda8020dc6a5973ae2445cee3
2022-01-03 12:49:32 -06:00

1 line
2.3 KiB
Plaintext

<!-- SC_OFF --><div class="md"><p>I want to separate my daily tasks with appointments and all from the (embarrasingly) long list of badly maintained tasks -- overdue ones, soon-to-be due ones, and those that are schedule for a past date.</p> <p>It was simple enough to hide the overdue stuff from today&#39;s timeline:</p> <pre><code> (agenda &quot;&quot; ((org-agenda-overriding-header &quot; &quot;) ;; Non-empty string to get empty line (org-agenda-span &#39;day) (org-agenda-ndays 1) (org-agenda-sorting-strategy (quote ((agenda time-up priority-down tag-up)))) ;; Do not include scheduled, due or overdue items here (org-deadline-warning-days 0) (org-scheduled-past-days 0) (org-deadline-past-days 0) (org-agenda-skip-scheduled-if-done t) (org-agenda-skip-timestamp-if-done t) (org-agenda-skip-deadline-if-done t))) </code></pre> <p>But I cannot get that output to appear elsewhere, e.g. farther down, out of focus. This does display all overdue etc. taks, but <em>also</em> everything with a timestamp for today:</p> <pre><code> (agenda &quot;&quot; ((org-agenda-overriding-header &quot;Overdue&quot;) (org-agenda-time-grid nil) (org org-agenda-remove-timeranges-from-blocks t) (org-agenda-show-all-dates nil) (org-agenda-format-date &quot;&quot;) ;; Skip the date (org-agenda-start-on-weekday nil) (org-agenda-span &#39;day) (org-agenda-ndays 0) (org-agenda-skip-function &#39;(org-agenda-skip-entry-if &#39;todo &#39;done)) ;; Show overdue items (org-scheduled-past-days 999) (org-deadline-past-days 999) ;; Ignore upcoming deadlines (org-deadline-warning-days 0))) </code></pre> <p>How can I get the bottom part to only show overdue etc. tasks, not those that are scheduled for today? </p> <p>Do I have to write a <code>(org-agenda-skip-function &#39;(org-agenda-skip-entry-if &#39;todo &#39;done))</code> replacement in elisp that filters elements by date, i.e. &quot;not today&quot;? (How? :))</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/divinedominion"> /u/divinedominion </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/rcs0vj/orgagenda_show_only_overdue_items_separately/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/rcs0vj/orgagenda_show_only_overdue_items_separately/">[comments]</a></span>