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] Issue with internal links

2019-08-08 Thread Nick Dokos
"Doyley, Marvin M." writes: > > * Testing > * One > * Two >[[*Testing]]. (I also tried [[Testing]] and I got the same error) > > Debugger entered--Lisp error: (void-function org-pass-link-to-system) > org-pass-link-to-system("*Testing") >

Re: [O] Issue with internal links

2019-08-08 Thread Nicolas Goaziou
Hello, "Doyley, Marvin M." writes: > Whenever I double click on an internal link I get the following error > “void-function org-pass-link-to-system” The function above doesn't exist in Org base. You may want to investigate on whatever is adding it to `org-open-link-functions'. Regards, --

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] Agenda: Display projects and 3 todo subtasks

2019-08-08 Thread Nathan Neff
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

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] Latex single dollar math delimiter question

2019-08-08 Thread emanuel . charpentier
On Sun, 4 Aug 2019, Eric S Fraga had the gall to write : > By the way, you might be interested in the following configuration > snippet which makes org insert \(\) when you type a single $ (and a $ > if you type 2 of them in a row). > > #+begin_src emacs-lisp :tangle "esf-org.el" > ;; from

[O] Issue with internal links

2019-08-08 Thread Doyley, Marvin M.
Hi there, Whenever I double click on an internal link I get the following error “void-function org-pass-link-to-system” Does anybody know how to resolve this. Thanks M PS. Enclosed is the a back trace for a simple file * Testing * One * Two [[*Testing]]. (I also tried [[Testing]] and I

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

2019-08-08 Thread Nathan Neff
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 org-tags-view and it's fairly straight forward -

[O] questionable result of Clojure code execution in org babel

2019-08-08 Thread Johannes Brauer
Hi executing the the following code section in an org-mode file with C-c C-c #+BEGIN_SRC clojure :results value (* 3 5) #+END_SRC I get #+RESULTS: : nil15 instead of #+RESULTS: : 15 Trying the same with emacs-lisp instead of clojure the correct result appears. My versions: ;; org-mode

Re: [O] Agenda: Display projects and 3 todo subtasks

2019-08-08 Thread Adam Porter
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

[O] ANN: org-ql agenda block support

2019-08-08 Thread Adam Porter
Hi friends, FYI, I just pushed a new feature to org-ql: custom agenda blocks. This allows the use of org-ql queries in custom agenda commands. https://github.com/alphapapa/org-ql#function-org-ql-block For example, these two custom commands are equivalent: #+BEGIN_SRC elisp ;; Org Agenda

[O] TODO or checkbox in tables

2019-08-08 Thread Uwe Brauer
Hi I would like to have something like this | | Patient | Nummer | Date | Quantity | Status | |---+-++--+--+| | 1 | Smith | A180106540 | <2018-08-23 Thu> | 67.88 € | TODO | or | | Patient | Leistungsart | Nummer

Re: [O] Bug: Feature request: make org-link emacs wide mode [9.2.5 (9.2.5-elpa @ /home/data1/protected/.emacs.d/elpa/org-20190801/)]

2019-08-08 Thread Jean Louis
* Štěpán Němec [2019-08-07 10:40]: > > I would like to request feature so that Org Links can be turned on > > Emacs wide as org-link-mode. Then links could work in various buffers, > > and this could make hyperlinking possible from any kinds of files. > > For reference: > >