Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-02-18 Thread Tyler Smith
You're welcome! I think the examples could use refreshing/restructuring, but I'm not sure when I'll have time to get to that. Best, Tyler -- plantarum.ca On Mon, Feb 17, 2020, at 12:40 PM, Jack Kamm wrote: > Hi Tyler, > > >> The documentation for ob-R is now incorrect: > >> > >>

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-02-17 Thread Jack Kamm
Hi Tyler, >> The documentation for ob-R is now incorrect: >> >> https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-R.html > > Yes, also that page could use some other updates, e.g. there are some > dead links in there. Just saw that you updated the docs a few days ago. Thanks for

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Jack Kamm
> Is the rationale explained anywhere? After a bit of poking around, it looks > like using the `:file` flag without a `file` argument to results doesn't do > anything (no file is created), nor does the reverse. That is, unless you use > both the `file` argument and the `:file` option, nothing

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Tyler Smith
On Mon, Jan 27, 2020, at 12:29 PM, Jack Kamm wrote: > > It should now be ":results graphics file". This behavior changed in Org > 9.3, see https://orgmode.org/Changes.html (:file header argument no > longer assume "file" :results). > That fixes it, thanks! The documentation for ob-R is now

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Jack Kamm
> #+begin_src R :results graphics :file test.jpg > plot (1:10) > #+end_src It should now be ":results graphics file". This behavior changed in Org 9.3, see https://orgmode.org/Changes.html (:file header argument no longer assume "file" :results).

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread William Denton
On 27 January 2020, Tyler Smith wrote: #+begin_src R :results graphics :file test.jpg plot (1:10) #+end_src ":results file graphics" should do it. Bill -- William Denton :: Toronto, Canada --- Listening to Art: https://listeningtoart.org/ https://www.miskatonic.org/ ---

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Tyler Smith
Hi Jeremie, I tried with `:results output graphics`, and with the file as jpg, and also as pdf. In all cases I still get the same result : no link is inserted. I first noticed this with the org version that was released at the end of December, and confirmed that the problem was still present

Re: Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Jeremie
Hello, I don't have the lastest.version of org-mode so i can't confirm. But could you try with the option :results output graphics :file test.pdf HTH, Jeremie On January 27, 2020 5:13:20 PM GMT+01:00, Tyler Smith wrote: >To reproduce: > >1. Start from `emacs -Q` > >2. open the following

Bug: R src blocks fail to produce link to graphics file [9.3 org-plus-contrib-20200127]

2020-01-27 Thread Tyler Smith
To reproduce: 1. Start from `emacs -Q` 2. open the following org file: ``` #+BEGIN_SRC elisp setup (require 'package) (setq package-load-list '((org-plus-contrib t) (ess t) (julia-mode t))) (package-initialize) (require 'org) (require 'ess) (org-babel-do-load-languages