From f692c9f6c4315da0229ea41d6733c35d8157fa96 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 22 Jan 2026 13:33:45 -0800 Subject: [PATCH] feat: add standalone agenda views for inbox, next, and wait states Adds three new org-agenda-custom-commands: - "i" for Inbox tasks (INBOX state) - "n" for Next tasks (NEXT state) - "w" for Waiting tasks (WAIT state) These were previously only available as part of the composite "M" view. Now they're exposed as standalone views for the org-agenda-api. Co-Authored-By: Claude Opus 4.5 --- dotfiles/emacs.d/org-config.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/org-config.org b/dotfiles/emacs.d/org-config.org index 257c865d..d91179dd 100644 --- a/dotfiles/emacs.d/org-config.org +++ b/dotfiles/emacs.d/org-config.org @@ -529,7 +529,11 @@ that have a SCHEDULED date before today to the current date." ((org-agenda-overriding-header "Completion History:") (org-agenda-ndays 5) (org-agenda-entry-types '(:none)) - (org-agenda-start-with-log-mode '(state)))))))) + (org-agenda-start-with-log-mode '(state))))) + ,(cons "i" (cons "Inbox" inbox)) + ,(cons "n" (cons "Next" next)) + ("w" "Wait" todo "WAIT" + ((org-agenda-overriding-header "Waiting:")))))) #+end_src *** Filters **** Regexp Presets