aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-12-29 21:32:19 -0800
committerGravatar Tom Willemse2020-12-29 21:32:19 -0800
commit7b7a67abc09c0fcdcd63a455aba9fbc041f1732b (patch)
tree30277e1d859d5731f2e298a802e4df1d671fe704
parent0daa3ae8ed1d089ddf7706bf1b81e3dff3004ab9 (diff)
downloademacs-config-7b7a67abc09c0fcdcd63a455aba9fbc041f1732b.tar.gz
emacs-config-7b7a67abc09c0fcdcd63a455aba9fbc041f1732b.zip
Don’t show scheduled items in the Next and Reading list views
The fact that they’re scheduled means they’re on my proper todo list for the day, which means they shouldn’t really need to be in here anymore.
-rw-r--r--oni-org/oni-org.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el
index 225e6e7..b6dc325 100644
--- a/oni-org/oni-org.el
+++ b/oni-org/oni-org.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2020.1229.184938
+;; Version: 2020.1229.213150
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons)
;; This program is free software; you can redistribute it and/or modify
@@ -343,8 +343,8 @@ also move point to the start of the heading."
(setq org-agenda-custom-commands
'(("i" "Inbox" tags "CATEGORY=\"inbox\"")
- ("t" "Next" tags-todo "TODO=\"NEXT\"-CATEGORY=\"inbox\"")
- ("r" "Reading list" tags-todo "TODO=\"READ\"")
+ ("t" "Next" tags-todo "TODO=\"NEXT\"-CATEGORY=\"inbox\"+SCHEDULED=\"\"")
+ ("r" "Reading list" tags-todo "TODO=\"READ\"+SCHEDULED=\"\"")
("s" "Someday" tags-todo "TODO=\"TODO\"-CATEGORY=\"inbox\"")
("p" "Projects & ideas" tags "CATEGORY=\"project\"|CATEGORY=\"idea\"")
("c" "Today's (Current) tasks" tags "SCHEDULED=\"<today>\"")