diff --git a/users/grfn/emacs.d/config.el b/users/grfn/emacs.d/config.el index a52c6fb85..5b41c28a0 100644 --- a/users/grfn/emacs.d/config.el +++ b/users/grfn/emacs.d/config.el @@ -237,7 +237,13 @@ ("DONE" . "Done")) org-tracker-username "griffin@readyset.io" org-tracker-claim-ticket-on-status-update '("ACTIVE" "PR" "DONE") - org-tracker-create-stories-with-labels 'existing)) + org-tracker-create-stories-with-labels 'existing) + + (defun org-tracker-headlines-from-assigned-to-me (level) + (interactive "*nLevel: ") + (org-tracker-headlines-from-search + level + "assignee = currentUser() and statusCategory = 2"))) (load! "+private")