I ran into another possible solution for the request of seeing the first
X TODO tasks for a project in the Agenda:
Let's say I simply run an org-tags-todo query looking for :project:
The Agenda now shows this:
Project1
Project2
Project3
Another possible solution would be to simply TAB to one of
Nathan Neff writes:
> Wow - thanks Adam!
>
> Your stuff is awesome. org-rifle is incredible. (I just wish that
> it didn't have as many dependencies -- I guess I'm just a bit paranoid).
Thanks for the kind words.
Which dependencies concern you? helm-org-rifle uses:
- Helm, of course. Howe
Wow - thanks Adam!
Your stuff is awesome. org-rifle is incredible. (I just wish that
it didn't have as many dependencies -- I guess I'm just a bit paranoid).
Thanks,
--Nate
On Thu, Aug 8, 2019 at 10:48 AM Adam Porter wrote:
> Hi Nathan,
>
> Well, this is an unorthodox solution using org-ql,
Hi Nathan,
Well, this is an unorthodox solution using org-ql, but it seems to work.
So, for what it's worth:
#+BEGIN_SRC elisp
(let* ((sub-query (lambda ()
(save-excursion
(save-restriction
(cons (org-ql--add-markers
(org-
Wow, cool to hear from the one & only Sacha!
Also, I found this GTD blog which appears to have something similar, under
the "Filtering Projects and Actions" section:
https://emacs.cafe/emacs/orgmode/gtd/2017/06/30/orgmode-gtd.html
However, this mechanism seems to report only the first TODO actio
Hmm, you're right, that project subtask snippet isn't working any more. I
don't think I can sort that out while I'm away from my computer, so it may
take me a few weeks until I can poke around. If anyone happens to have a
better config, please feel free to share!
On Wed., Jul. 31, 2019, 10:37 Nath
I forgot to mention that I have PROJECT tag as not inheritable:
(setq org-tags-exclude-from-inheritance (quote ("PROJECT")))
And here's the agenda custom-command addition:
("2" "List projects with tasks" my/org-agenda-projects-and-tasks
"+PROJECT"
((org-agenda-max-entries 3))
Hello all,
I found this cool snippet at Sacha Chua's website: [1].
It creates an agenda view with headings marked with tag "project",
and for each of those headings, it displays up to 3 sub headings marked
TODO.
I like this idea of seeing my projects (plus a few TODO entries under each
project)