emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-babel-tangle-w-comments has no effect in R?
@ 2010-07-01  7:27 Rainer M Krug
  2010-07-01 15:41 ` Eric Schulte
  0 siblings, 1 reply; 5+ messages in thread
From: Rainer M Krug @ 2010-07-01  7:27 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 912 bytes --]

Hi

I am trying to use "tangle with comments". Based on a previous thread, I
set org-babel-tangle-w-comments to t with
 (setq org-babel-tangle-w-comments t)
in my emacs.org file.

The variable is actually set to 1 - I checked vie C-h - v

But nothing is changing in the tangled file? Am I doing something wrong? Or
are comments not supported in R in org-babel?

I attach a small testfile.

Cheers,

Rainer

-- 
NEW GERMAN FAX NUMBER!!!

Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,
UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

[-- Attachment #1.2: Type: text/html, Size: 1291 bytes --]

[-- Attachment #2: test.org --]
[-- Type: application/octet-stream, Size: 595 bytes --]

#+TITLE:     test.org
#+AUTHOR:    Rainer M Krug
#+EMAIL:     rkrug@ecolmod
#+DATE:      2010-06-30 Wed
#+DESCRIPTION: 
#+KEYWORDS: 
#+LANGUAGE:  en
#+OPTIONS:   H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS:   TeX:t LaTeX:nil skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:   
#+LINK_HOME: 
#+XSLT: 

* TODO first
#+begin_src R :tangle test.R
  x <- 1:10
  y <- runif(10)
  print(x)
  plot(x,y)
#+end_src

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-babel-tangle-w-comments has no effect in R?
  2010-07-01  7:27 org-babel-tangle-w-comments has no effect in R? Rainer M Krug
@ 2010-07-01 15:41 ` Eric Schulte
  2010-07-02  7:22   ` Rainer M Krug
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Schulte @ 2010-07-01 15:41 UTC (permalink / raw)
  To: Rainer M Krug; +Cc: emacs-orgmode

Hi Rainer,

There is one more requirement for tangling with comments, that is the
presence of a :comments header argument.  If this argument is not set
for a code block then that code block *will not* be tangled with
comments regardless of the value of `org-babel-tangle-w-comments'.

You can set this variable to default to true for R code blocks with the
following

  (add-to-list 'org-babel-default-header-args:R '(:comments . "yes"))

Hope this helps.

I think that moving forward it might make sense to remove the
org-babel-tangle-w-comments variable, as it's confusing to have two
points of control for comments during tangling.  Also, it looks like I
need to add the :comments header argument to the babel documentation.

Thanks for helping to sort some of these issues out!

Best -- Eric

Rainer M Krug <r.m.krug@gmail.com> writes:

> Hi
>
> I am trying to use "tangle with comments". Based on a previous thread, I
> set org-babel-tangle-w-comments to t with
>  (setq org-babel-tangle-w-comments t)
> in my emacs.org file.
>
> The variable is actually set to 1 - I checked vie C-h - v
>
> But nothing is changing in the tangled file? Am I doing something wrong? Or
> are comments not supported in R in org-babel?
>
> I attach a small testfile.
>
> Cheers,
>
> Rainer

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-babel-tangle-w-comments has no effect in R?
  2010-07-01 15:41 ` Eric Schulte
@ 2010-07-02  7:22   ` Rainer M Krug
  2010-07-02 21:02     ` Eric Schulte
  0 siblings, 1 reply; 5+ messages in thread
From: Rainer M Krug @ 2010-07-02  7:22 UTC (permalink / raw)
  To: Eric Schulte; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2904 bytes --]

On Thu, Jul 1, 2010 at 5:41 PM, Eric Schulte <schulte.eric@gmail.com> wrote:

> Hi Rainer,
>

Hi Eric


>
> There is one more requirement for tangling with comments, that is the
> presence of a :comments header argument.  If this argument is not set
> for a code block then that code block *will not* be tangled with
> comments regardless of the value of `org-babel-tangle-w-comments'.
>

That explains.


>
> You can set this variable to default to true for R code blocks with the
> following
>
>  (add-to-list 'org-babel-default-header-args:R '(:comments . "yes"))
>

OK - it is working.
What I actually did, was to add

   #+BABEL: :comments yes

to the headers of the file, so I can control it on a file basis.


> Hope this helps.
>

Definitely.


>
> I think that moving forward it might make sense to remove the
> org-babel-tangle-w-comments variable, as it's confusing to have two
> points of control for comments during tangling.  Also, it looks like I
> need to add the :comments header argument to the babel documentation.
>

Both points agreed.

In addition: is it possible to customize the format for all comments (on a
per file basis and / or a per block basis)? i.e. I don't need the file name,
as all blocks are coming from one file. I know about

  #+srcname: <name>

but is there a variable for the line number (I guess that is covered by the
request posted in another thread) one could use?

Also, would it be possible to include a link in the comment block, so that
clicking on that link actually opens the org-file file at the location of
the source block? That would make editing the code really easy.

Thanks for helping to sort some of these issues out!
>

Pleasure - I use them and I profit when they are sorted out. In addition: I
think org-mode and babel deserve it - they are great tools for programming
in R.

Cheers,

Rainer



>
> Best -- Eric
>
> Rainer M Krug <r.m.krug@gmail.com> writes:
>
> > Hi
> >
> > I am trying to use "tangle with comments". Based on a previous thread, I
> > set org-babel-tangle-w-comments to t with
> >  (setq org-babel-tangle-w-comments t)
> > in my emacs.org file.
> >
> > The variable is actually set to 1 - I checked vie C-h - v
> >
> > But nothing is changing in the tangled file? Am I doing something wrong?
> Or
> > are comments not supported in R in org-babel?
> >
> > I attach a small testfile.
> >
> > Cheers,
> >
> > Rainer
>



-- 
NEW GERMAN FAX NUMBER!!!

Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,
UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

[-- Attachment #1.2: Type: text/html, Size: 4723 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-babel-tangle-w-comments has no effect in R?
  2010-07-02  7:22   ` Rainer M Krug
@ 2010-07-02 21:02     ` Eric Schulte
  2010-07-03 18:34       ` Rainer M Krug
  0 siblings, 1 reply; 5+ messages in thread
From: Eric Schulte @ 2010-07-02 21:02 UTC (permalink / raw)
  To: Rainer M Krug; +Cc: emacs-orgmode

Hi Rainer,

Rainer M Krug <r.m.krug@gmail.com> writes:

[...]
>>
>> I think that moving forward it might make sense to remove the
>> org-babel-tangle-w-comments variable, as it's confusing to have two
>> points of control for comments during tangling.  Also, it looks like I
>> need to add the :comments header argument to the babel documentation.
>>
>
> Both points agreed.
>

Great, I'll put together a patch removing this variable.

>
> In addition: is it possible to customize the format for all comments
> (on a per file basis and / or a per block basis)? i.e. I don't need
> the file name, as all blocks are coming from one file. I know about
>
>   #+srcname: <name>
>
> but is there a variable for the line number (I guess that is covered by the
> request posted in another thread) one could use?
>

We could very easily introduce a customizable
`org-babel-tangle-comment-format-string', in fact I think this would be
a very good idea.

>
> Also, would it be possible to include a link in the comment block, so
> that clicking on that link actually opens the org-file file at the
> location of the source block? That would make editing the code really
> easy.
>

That was the goal of the current comment syntax, unfortunately I don't
know of a good way to activate Org-mode style links in the comments of
source code files.  Rest assured once that feature exists (and I know
about it) we'll have such links.

Best -- Eric

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: org-babel-tangle-w-comments has no effect in R?
  2010-07-02 21:02     ` Eric Schulte
@ 2010-07-03 18:34       ` Rainer M Krug
  0 siblings, 0 replies; 5+ messages in thread
From: Rainer M Krug @ 2010-07-03 18:34 UTC (permalink / raw)
  To: Eric Schulte; +Cc: emacs-orgmode

Hi Eric

On Friday, July 2, 2010, Eric Schulte <schulte.eric@gmail.com> wrote:
> Hi Rainer,
>
> Rainer M Krug <r.m.krug@gmail.com> writes:
>
> [...]
>>>
>>> I think that moving forward it might make sense to remove the
>>> org-babel-tangle-w-comments variable, as it's confusing to have two
>>> points of control for comments during tangling.  Also, it looks like I
>>> need to add the :comments header argument to the babel documentation.
>>>
>>
>> Both points agreed.
>>
>
> Great, I'll put together a patch removing this variable.

Great.

>
>>
>> In addition: is it possible to customize the format for all comments
>> (on a per file basis and / or a per block basis)? i.e. I don't need
>> the file name, as all blocks are coming from one file. I know about
>>
>>   #+srcname: <name>
>>
>> but is there a variable for the line number (I guess that is covered by the
>> request posted in another thread) one could use?
>>
>
> We could very easily introduce a customizable
> `org-babel-tangle-comment-format-string', in fact I think this would be
> a very good idea.

Yes -  that would make the comment feature much more useful.

>
>>
>> Also, would it be possible to include a link in the comment block, so
>> that clicking on that link actually opens the org-file file at the
>> location of the source block? That would make editing the code really
>> easy.
>>
>
> That was the goal of the current comment syntax, unfortunately I don't
> know of a good way to activate Org-mode style links in the comments of
> source code files.  Rest assured once that feature exists (and I know
> about it) we'll have such links.

Sound great. That would actually make it perfect.

Cheers,

Rainer

>
> Best -- Eric
>

-- 
NEW GERMAN FAX NUMBER!!!

Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-07-03 18:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-01  7:27 org-babel-tangle-w-comments has no effect in R? Rainer M Krug
2010-07-01 15:41 ` Eric Schulte
2010-07-02  7:22   ` Rainer M Krug
2010-07-02 21:02     ` Eric Schulte
2010-07-03 18:34       ` Rainer M Krug

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).