From 7b7a67abc09c0fcdcd63a455aba9fbc041f1732b Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 29 Dec 2020 21:32:19 -0800 Subject: 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. --- oni-org/oni-org.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'oni-org/oni-org.el') 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 ;; 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=\"\"") -- cgit v1.2.3-54-g00ecf