Re: [O] Is it possible to embed tag search as a link?

2015-06-25 Thread Sebastien Vauban
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.: >

Re: [O] Is it possible to embed tag search as a link?

2015-06-24 Thread Jay Dresser
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

Re: [O] Is it possible to embed tag search as a link?

2015-06-23 Thread Piotr Isajew
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.

Re: [O] Is it possible to embed tag search as a link?

2015-06-23 Thread Sebastien Vauban
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

Re: [O] Is it possible to embed tag search as a link?

2015-06-22 Thread Jay Dresser
> > 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

Re: [O] Is it possible to embed tag search as a link?

2015-06-22 Thread Jay Dresser
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

Re: [O] Is it possible to embed tag search as a link?

2015-06-21 Thread Jay Dresser
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: