diff options
author | Raúl Benencia <id@rbenencia.name> | 2023-11-26 10:16:15 -0800 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2023-11-26 10:16:15 -0800 |
commit | 2d87464c6735e7b25aad1c848bc113b4d1dce924 (patch) | |
tree | e37d8702bf5128ee0f99397db977a7242c1a4c80 /.emacs.d/rul-lisp | |
parent | eaf069f2a0ade65cdb6e3e848e4d54aa9419ff32 (diff) |
emacs: only show todos in skip-project-tasks
Diffstat (limited to '.emacs.d/rul-lisp')
-rw-r--r-- | .emacs.d/rul-lisp/packages/rul-org-agenda.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.emacs.d/rul-lisp/packages/rul-org-agenda.el b/.emacs.d/rul-lisp/packages/rul-org-agenda.el index 7b6c4b4..bfdc8d3 100644 --- a/.emacs.d/rul-lisp/packages/rul-org-agenda.el +++ b/.emacs.d/rul-lisp/packages/rul-org-agenda.el @@ -214,6 +214,8 @@ Skip project and sub-project tasks, habits, and project related tasks." subtree-end) ((bh/is-project-subtree-p) subtree-end) + ((not (org-entry-is-todo-p)) + subtree-end) (t nil))))) |