>> (setq org-stuck-projects '("PROJECT" ("NEXT") nil nil)) >> This means that everything with a tag :PROJECT: without NEXT subtask is a >> stuck project. >> >> I’d like this stuck project to be shown in the stuck project list: >> >> * TODO my stuck project :PROJECT: >> ** TODO subtask >> >> But it is not shown there. > > I cannot reproduce it on latest Org, i.e., both tasks appear in the > stuck projects list.
Hi, Nicolas. I found the cause. (setq org-enforce-todo-dependencies t) (setq org-agenda-dim-blocked-tasks ‘invisible) This hides my stuck project from the list because it depends on a subtask. I set it to dim, not to hide, that’s enough for now. Thanks.