Re: [O] Configure Helm Source from org-tags-view

2019-08-09 Thread Nathan Neff
On Fri, Aug 9, 2019 at 2:14 PM Adam Porter wrote: > Nathan Neff writes: > > > I know, but rifle has so many dependencies > > > > Rifle is truly awesome, I just have to convince myself to trust > > f.el and d.el or whatever those one-letter libraries are :-) > > helm-org-rifle's dependencies

Re: [O] Configure Helm Source from org-tags-view

2019-08-09 Thread Adam Porter
Nathan Neff writes: > I know, but rifle has so many dependencies > > Rifle is truly awesome, I just have to convince myself to trust > f.el and d.el or whatever those one-letter libraries are :-) helm-org-rifle's dependencies are libraries which have been around for over 6 years and are

Re: [O] Configure Helm Source from org-tags-view

2019-08-09 Thread Nathan Neff
I know, but rifle has so many dependencies Rifle is truly awesome, I just have to convince myself to trust f.el and d.el or whatever those one-letter libraries are :-) Thanks, --Nate On Fri, Aug 9, 2019 at 6:10 AM Adam Porter wrote: > Nathan Neff writes: > > > Hello all, > > > > Has

Re: [O] Configure Helm Source from org-tags-view

2019-08-09 Thread Adam Porter
Nathan Neff writes: > Hello all, > > Has anyone created a Helm source from the results of org-agenda? > > Specifically org-tags-view I think would be a cool Helm source to > configure where the headings that have certain tags could be displayed > by Helm. > > I looked @ the code for

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Jean Louis
* Nathan Neff [2019-08-08 22:47]: > Hi Jean Louis, > > Thank you for your time and advice - I am trying to spend time > learning Elisp and more of the underpinnings in org-mode - so your > advice was very helpful. > > In fact, I found that org-scan-tags is called by org-map-entries - >

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
Hi Jean Louis, Thank you for your time and advice - I am trying to spend time learning Elisp and more of the underpinnings in org-mode - so your advice was very helpful. In fact, I found that org-scan-tags is called by org-map-entries - org-map-entries can specify a SCOPE of 'agenda (not the

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Jean Louis
* Nathan Neff [2019-08-08 22:24]: > I removed the staff from the beginning of the function call, and changed > staff to bar I also removed the (or (and)) conditions :-) > > Now, I need to see how to make this function search all agenda files - it > seems > to work only on the headlines in

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Jean Louis
* Nathan Neff [2019-08-08 22:04]: > Hi Jean, > > Thank you - however, I can't get this function to return anything. > > org-scan-tags accepts an action, a matcher and a todo-only. > > Code: > > (org-scan-tags 'agenda ;; Action > '(staff lambda (todo tags-list level) ;;

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
Okay, I got this to work in org-babel in a file foo.org that has headlines like this: * Foo.org :bar: #+BEGIN_SRC emacs-lisp (org-scan-tags 'agenda ;; Action '(lambda (todo tags-list level) ;; Matcher (progn

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Nathan Neff
Hi Jean, Thank you - however, I can't get this function to return anything. org-scan-tags accepts an action, a matcher and a todo-only. Code: (org-scan-tags 'agenda ;; Action '(staff lambda (todo tags-list level) ;; Matcher (progn

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Jean Louis
* Nathan Neff [2019-08-08 18:50]: > Hello all, > > Has anyone created a Helm source from the results of org-agenda? > > Specifically org-tags-view I think would be a cool Helm source to > configure where the headings that have certain tags could be displayed > by Helm. > > I looked @ the code

Re: [O] Configure Helm Source from org-tags-view

2019-08-08 Thread Jean Louis
* Nathan Neff [2019-08-08 18:50]: > Hello all, > > Has anyone created a Helm source from the results of org-agenda? > > Specifically org-tags-view I think would be a cool Helm source to > configure where the headings that have certain tags could be displayed > by Helm. > > I looked @ the code