mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
Emacs: add DONE to org-agenda-skip-function
This commit is contained in:
parent
654defc583
commit
ff0e775e0d
1 changed files with 4 additions and 4 deletions
|
@ -91,7 +91,7 @@
|
|||
|
||||
("mt" "Todo"
|
||||
entry (file+headline ,(concat org-directory "/inbox.org") "You can do it!")
|
||||
"** TODO [#B] %?\n:Created: %U\n "
|
||||
"** TODO [#B] %?\n:CREATED: %U\n "
|
||||
:empty-lines 1)
|
||||
|
||||
("p" "Projects")
|
||||
|
@ -102,7 +102,7 @@
|
|||
|
||||
("pt" "Todo"
|
||||
entry (file+headline ,(concat org-directory "/inbox.org") "Project Tasks")
|
||||
"** TODO [#B] %?\n:Created: %U\n%i\n%a\nNotes: "
|
||||
"** TODO [#B] %?\n:CREATED: %U\n%i\n%a\nNotes: "
|
||||
:empty-lines 1)
|
||||
|
||||
("w" "Work")
|
||||
|
@ -113,7 +113,7 @@
|
|||
|
||||
("wt" "Todo"
|
||||
entry (file+headline ,(concat org-directory "/inbox.org") "Work Tasks")
|
||||
"** TODO [#B] %?\n:Created: %U\n%i\n%a\nNotes: "
|
||||
"** TODO [#B] %?\n:CREATED: %U\n%i\n%a\nNotes: "
|
||||
:empty-lines 1)))
|
||||
|
||||
;; Headline appearance
|
||||
|
@ -162,7 +162,7 @@
|
|||
;; (org-agenda-prefix-format " %-20:c%?-12t %s")
|
||||
(org-agenda-remove-tags t)
|
||||
(org-agenda-skip-function '(org-agenda-skip-entry-if
|
||||
'todo '("WONT-DO")))
|
||||
'todo '("DONE" "WONT-DO")))
|
||||
(org-agenda-span 5)))
|
||||
|
||||
(alltodo "" ((org-agenda-overriding-header "")
|
||||
|
|
Loading…
Reference in a new issue