From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: [BABEL] tangling with leaving non-source code lines as empty lines? Date: Mon, 12 Jul 2010 11:04:53 -0700 Message-ID: <871vb8lgoq.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=54146 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OYNNJ-0001M1-Uk for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 14:05:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OYNNE-00018R-Kk for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 14:05:05 -0400 Received: from mail-pv0-f169.google.com ([74.125.83.169]:38360) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OYNNE-00018I-CU for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 14:05:00 -0400 Received: by pvc30 with SMTP id 30so4785260pvc.0 for ; Mon, 12 Jul 2010 11:04:59 -0700 (PDT) In-Reply-To: (Rainer M. Krug's message of "Mon, 12 Jul 2010 17:19:42 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Rainer M Krug Cc: emacs-orgmode Hi Rainer, If I'm understand you correctly you want the absolute position (by LOC) of the lines of R code to be the same in both the original org file and the tangled file or R code. I don't think this is possible. It is possible to tangle code blocks in any order (not just the order in which they appear in the original org file), so there are many valid tangling scenarios in which this feature could not work. Rather, I think that it may make sense to have a function for jumping back and forth between tangled code blocks and the related Org file. In that case the R errors could be followed to the tangled R code file, from which you could easily jump to the relevant line in the relevant code block in the Org file. If you are tangling with comments, then it should be possible to have a function called from a line in a tangled code file which when called 1) finds it's enclosing comments 2) remembers it's offset from the comments (which would then be it's offset in the code block in the Org file) 3) read the comment to learn which code block in which Org file it's tangled from 4) jump to the relevant line, in the relevant block, in the relevant file Similarly when called form within a code block in an Org file the function could 1) read it's header argument to find the relevant tangled code file 2) jump to that file 3) use the comments in that file to move to the appropriate section of code and related line I'll think about such a function, and if it makes sense to implement it apart from a more general "activate org-mode links in comments" minor mode. Any ideas or suggestions would be welcome! Thanks -- Eric Rainer M Krug writes: > Hi Eric, > > would it be possible, when tangling, to leave lines without source code in > the resulting code file as empty lines? The reasoning would be that error > messages (at least in R) give the line in which the error occurred. If the > line numbers in which the code sits would be preserved (by leaving empty > lines where no code is in the .org file), debugging would be much easier. > > By the way: I am using the after tangle hook and it works absolutely > perfectly. > > Thanks and cheers, > > Rainer