diff --git a/doom/.config/doom/README.org b/doom/.config/doom/README.org index 77f8697..55c90df 100644 --- a/doom/.config/doom/README.org +++ b/doom/.config/doom/README.org @@ -3362,9 +3362,9 @@ with a project-tagged custom agenda entry and optional CONTEXT-TAG (mu4e/agenda) (org-agenda-skip-function '(org-agenda-skip-entry-if 'scheduled))))) - ((org-agenda-tag-filter-preset (list ,(concat "+" project-tag)))))))) + ((org-agenda-tag-filter-preset (list ,(concat "+" project-tag))))))) ,@(if context-tag - `((gortium/context-tag . ,context-tag)) + (list (cons 'gortium/context-tag context-tag)) nil)))) (current-buffer)))))) @@ -3386,7 +3386,7 @@ with a project-tagged custom agenda entry and optional CONTEXT-TAG (mu4e/agenda) (shell-command (concat "git add -f " add-files))))) ;; Pass the target file location back up to the caller - org-file) + org-file)) ;;; ==================================================================== ;;; Interactive Entry Points diff --git a/doom/.config/doom/config.el b/doom/.config/doom/config.el index c962fee..b699c56 100644 --- a/doom/.config/doom/config.el +++ b/doom/.config/doom/config.el @@ -2440,9 +2440,9 @@ with a project-tagged custom agenda entry and optional CONTEXT-TAG (mu4e/agenda) (org-agenda-skip-function '(org-agenda-skip-entry-if 'scheduled))))) - ((org-agenda-tag-filter-preset (list ,(concat "+" project-tag)))))))) + ((org-agenda-tag-filter-preset (list ,(concat "+" project-tag))))))) ,@(if context-tag - `((gortium/context-tag . ,context-tag)) + (list (cons 'gortium/context-tag context-tag)) nil)))) (current-buffer)))))) @@ -2464,7 +2464,7 @@ with a project-tagged custom agenda entry and optional CONTEXT-TAG (mu4e/agenda) (shell-command (concat "git add -f " add-files))))) ;; Pass the target file location back up to the caller - org-file) + org-file)) ;;; ==================================================================== ;;; Interactive Entry Points