alphapapa / alphapapa/org-super-agenda
Add filename to outline-path
- Lingua principale
- Emacs Lisp
- Stelle
- 1.5k
- Fork
- 107
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
I have two org files that have content under the same heading:
```
* Heading 1
** TODO Item 1
```
I have this in my `org-agenda-custom-commands`:
```elisp
(setq org-agenda-custom-commands
...
(org-ql-block '(todo "TODO")
((org-super-agenda-groups '((:auto-outline-path t)))))
...
```
And this is what I see in the agenda view:
```
Query:(todo "TODO") In:org-agenda-files
Heading 1
TODO Item 1
TODO Item 1
```
What I would like to see is:
```
Query:(todo "TODO") In:org-agenda-files
file1.org/Heading 1
TODO Item 1
file2.org/Heading 1
TODO Item 1
```
If there isn't a way to do this already, could it be added? I know there are some other issues discussing groups of groups, multiple `org-ql-block`s in an agenda view, multiple org-ql-search queries in a single buffer, etc, which may be alternative solutions for distinguishing between these headings, but I think just having the filename in the outline path is a simpler solution for what I need.
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.