From 7b7a67abc09c0fcdcd63a455aba9fbc041f1732b Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 29 Dec 2020 21:32:19 -0800 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20show=20scheduled=20items=20in?= =?UTF-8?q?=20the=20Next=20and=20Reading=20list=20views?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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(-) 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=\"\"")