Re: [O] open link in source code block

2019-01-17 Thread Win Treese
> On Jan 17, 2019, at 1:38 PM, Berry, Charles wrote: > > TL;DR: "org-open-at-point calls org-babel-open-src-block-result first thing" > is not true. > > The `unless' COND argument starting around line 5 of the code of > `org-open-at-point' runs the hooks in `org-open-at-point-functions'.

Re: [O] open link in source code block

2019-01-17 Thread Berry, Charles
> On Jan 16, 2019, at 3:43 PM, Win Treese wrote: > > [Quoting trimmed for the most relevant context.] > >> On Jan 11, 2019, at 7:12 PM, Berry, Charles wrote: >> >>> On Jan 5, 2019, at 7:41 AM, Win Treese wrote: >>> On Jan 5, 2019, at 5:25 AM, Eric S Fraga wrote: On

Re: [O] open link in source code block

2019-01-16 Thread Win Treese
[Quoting trimmed for the most relevant context.] > On Jan 11, 2019, at 7:12 PM, Berry, Charles wrote: > >> On Jan 5, 2019, at 7:41 AM, Win Treese wrote: >> >>> On Jan 5, 2019, at 5:25 AM, Eric S Fraga wrote: >>> >>> On Friday, 4 Jan 2019 at 19:38, Win Treese wrote: Suppose I have the

Re: [O] open link in source code block

2019-01-11 Thread Berry, Charles
> On Jan 5, 2019, at 7:41 AM, Win Treese wrote: > > > >> On Jan 5, 2019, at 5:25 AM, Eric S Fraga wrote: >> >> On Friday, 4 Jan 2019 at 19:38, Win Treese wrote: >>> Suppose I have the following Org file contents: >>> >>> * test >>> >>> #+BEGIN_SRC emacs-lisp >>> (setq yyy 3) >>> ;; See

Re: [O] open link in source code block

2019-01-05 Thread Win Treese
> On Jan 5, 2019, at 5:25 AM, Eric S Fraga wrote: > > On Friday, 4 Jan 2019 at 19:38, Win Treese wrote: >> Suppose I have the following Org file contents: >> >> * test >> >> #+BEGIN_SRC emacs-lisp >> (setq yyy 3) >> ;; See https://www.gnu.org >> #+END_SRC >> >> The URL for gnu.org is

Re: [O] open link in source code block

2019-01-05 Thread Eric S Fraga
On Friday, 4 Jan 2019 at 19:38, Win Treese wrote: > Suppose I have the following Org file contents: > > * test > > #+BEGIN_SRC emacs-lisp > (setq yyy 3) > ;; See https://www.gnu.org > #+END_SRC > > The URL for gnu.org is highlighted as a clickable link. But if I click > it, the source block is

[O] open link in source code block

2019-01-04 Thread Win Treese
I suspect that this has come up before, but I couldn’t find anything about it in the mailing list archives. Suppose I have the following Org file contents: * test #+BEGIN_SRC emacs-lisp (setq yyy 3) ;; See https://www.gnu.org #+END_SRC The URL for gnu.org is highlighted as a clickable link.