Jay Dresser writes:
> Sebastien Vauban writes:
>> Jay Dresser writes:
Piotr Isajew yahoo.com> writes:
> what I'm looking for is a link format that, when C-c C-o'ed,
> opens agenda "match query" view for custom query which arguments
> are specified in the link. I.e.:
>
Sebastien Vauban writes:
> Jay Dresser writes:
>>> Piotr Isajew yahoo.com> writes:
what I'm looking for is a link format that, when C-c C-o'ed,
opens agenda "match query" view for custom query which arguments
are specified in the link. I.e.:
org-search://+work-boss-TOD
On 2015-06-23, Jay Dresser wrote:
>
> I just happened to run across this which seems to better match
> your original question, to do it as a new link type:
> http://endlessparentheses.com/use-org-mode-links-for-absolutely-anything.html
that's a perfect hint. Thank you.
Jay Dresser writes:
>> Piotr Isajew yahoo.com> writes:
>>> what I'm looking for is a link format that, when C-c C-o'ed,
>>> opens agenda "match query" view for custom query which arguments
>>> are specified in the link. I.e.:
>>>
>>> org-search://+work-boss-TODO="DONE"
>>>
>>> I am aware of org
>
> Piotr Isajew yahoo.com> writes:
> >
> >
> > Hi,
> >
> > what I'm looking for is a link format that, when C-c C-o'ed,
> > opens agenda "match query" view for custom query which arguments
> > are specified in the link. I.e.:
> >
> > org-search://+work-boss-TODO="DONE"
> >
> > I am aware of
Piotr Isajew yahoo.com> writes:
>
>
> Hi,
>
> what I'm looking for is a link format that, when C-c C-o'ed,
> opens agenda "match query" view for custom query which arguments
> are specified in the link. I.e.:
>
> org-search://+work-boss-TODO="DONE"
>
> I am aware of org-protocol which can be
You could always do it with elisp, perhaps:
[[elisp:(org-tags-view nil "+work-boss-TODO=\"DONE\"")]]
which would be like "C-c a m"
Or:
[[elisp:(org-match-sparse-tree nil "+work-boss-TODO=\"DONE\"")]]
which would be like "C-c \".
Change "nil" to "t" for TODO only.
Piotr Isajew writes: