20250506.1746536761
This commit is contained in:
parent
1194ba127d
commit
3c5f3155eb
3 changed files with 77 additions and 17 deletions
|
@ -357,21 +357,33 @@ PRIORITY may be one of the characters ?A, ?B, or ?C."
|
|||
;; View 7 days in the calendar view
|
||||
((agenda "" ((org-agenda-span 7)))
|
||||
|
||||
;; Display items with priority A
|
||||
|
||||
(tags-todo "+TODO=\"STRT\""
|
||||
((org-agenda-overriding-header "All started tasks (STRT)")))
|
||||
|
||||
;; ------------------ Priority A ------------------
|
||||
(tags "PRIORITY=\"A\""
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "High-priority unfinished tasks:")))
|
||||
((org-agenda-skip-function
|
||||
'(or (org-agenda-skip-entry-if 'todo 'done)
|
||||
(org-agenda-skip-entry-if 'todo '("STRT" "HOLD"))))
|
||||
(org-agenda-overriding-header "High‑priority unfinished tasks:")))
|
||||
|
||||
|
||||
;; Display items with priority B (really it is view all items minus A & C)
|
||||
;; ------------------ Priority B ------------------
|
||||
(tags "PRIORITY=\"B\""
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "ALL normal priority tasks:")))
|
||||
((org-agenda-skip-function
|
||||
'(or (org-agenda-skip-entry-if 'todo 'done)
|
||||
(org-agenda-skip-entry-if 'todo '("STRT" "HOLD"))))
|
||||
(org-agenda-overriding-header "ALL normal‑priority tasks:")))
|
||||
|
||||
;; Display items with pirority C
|
||||
;; ------------------ Priority C ------------------
|
||||
(tags "PRIORITY=\"C\""
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "Low-priority Unfinished tasks:")))
|
||||
((org-agenda-skip-function
|
||||
'(or (org-agenda-skip-entry-if 'todo 'done)
|
||||
(org-agenda-skip-entry-if 'todo '("STRT" "HOLD"))))
|
||||
(org-agenda-overriding-header "Low‑priority unfinished tasks:")))
|
||||
|
||||
(tags-todo "+TODO=\"HOLD\""
|
||||
((org-agenda-overriding-header "All holded tasks (HOLD)")))
|
||||
)
|
||||
|
||||
;; Don't compress things (change to suite your tastes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue