[TxMt] Re: textmate Digest, Vol 40, Issue 32

Brandon M Fryslie bmf at email.arizona.edu
Wed Sep 28 18:45:20 UTC 2011


> Hi, in Lion 10.7 seems there is no way to resize the preference panel,
that is a problem for the Advanced --> Shell Variables TAB (I have a very
long PATH)?.

When I click on the path to edit the variable, I can scroll my cursor from
the beginning to the end.  It isn't incredibly convenient being so small,
but you could probably do it with no problem.  Alternatively, you could edit
the path somewhere else and paste it in there rather than mess with it
within the preferences dialog itself.

Brandon

On Wed, Sep 28, 2011 at 5:00 AM, <textmate-request at lists.macromates.com>wrote:

> Send textmate mailing list submissions to
>        textmate at lists.macromates.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://lists.macromates.com/listinfo/textmate
> or, via email, send a message with subject or body 'help' to
>        textmate-request at lists.macromates.com
>
> You can reach the person managing the list at
>        textmate-owner at lists.macromates.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of textmate digest..."
>
>
> Today's Topics:
>
>   1.   R bundle have a BUG? (Davide Rambaldi)
>   2.  Re: R bundle have a BUG? (Hans-J?rg Bibiko)
>   3.  Re: R bundle have a BUG? (Davide Rambaldi)
>   4.  Re: R bundle have a BUG? (Hans-J?rg Bibiko)
>   5.  Lion Preferences: no resize (Davide Rambaldi)
>   6.  Re: Lion Preferences: no resize (Daniel Dettlaff)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 27 Sep 2011 17:06:49 +0200
> From: Davide Rambaldi <davide.rambaldi at gmail.com>
> To: textmate at lists.macromates.com
> Subject: [TxMt]  R bundle have a BUG?
> Message-ID: <6C0E9953-03A6-44C4-9A0E-A3172DD05253 at gmail.com>
> Content-Type: text/plain; charset=windows-1252
>
> Hi, first of all, congrats for your editor: is the best.
>
> Not sure where to post this problem (R devel, here, mailing list for the
> bundles?)
>
> Anyway: I am trying to use the R bundle (R statistical language).
>
> I have the following problem:
>
> - I have a script that generate a PDF multiline using plot?
>
> pdf(merge.fitting.file.path)
> print(plot(parent.fitting))
> print(plot(my.fit))
> dev.off()
>
> everything is working ok from R console or R CMD BATCH : I get back my
> multiline PDF
>
> When I run the scripts inside textMate (with cmd-R) only THE LAST PAGE of
> the pdf is recorder in the file!
>
> Can you please suggest me where to post this BUG?
>
> Thanks
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Tue, 27 Sep 2011 20:40:46 +0200
> From: Hans-J?rg Bibiko <bibiko at eva.mpg.de>
> To: TextMate users <textmate at lists.macromates.com>
> Subject: [TxMt] Re: R bundle have a BUG?
> Message-ID: <E2B5D226-64C4-4E60-BEA3-7DE4EBE571D6 at eva.mpg.de>
> Content-Type: text/plain; charset=windows-1252
>
>
> On 27 Sep 2011, at 17:06, Davide Rambaldi wrote:
>
> > Not sure where to post this problem (R devel, here, mailing list for the
> bundles?)
> Here's the right place :)
>
> > I have the following problem:
> >
> > - I have a script that generate a PDF multiline using plot?
> >
> > pdf(merge.fitting.file.path)
> > print(plot(parent.fitting))
> > print(plot(my.fit))
> > dev.off()
>
>
> The easiest to check the default parameter settings for "pdf()" in a
> software environment execute:
>
> > args(pdf)
> function (file = "/tmp/TM_R/Rplot%03d.pdf", width = 8, height = 8,
>    onefile = FALSE, family, title, fonts, version, paper, encoding,
>    bg, fg, pointsize, pagecentre, colormodel, useDingbats, useKerning,
>    fillOddEven, maxRasters)
>
>
> Here you see that the parameter "onefile" is set to FALSE which means that
> each plot will go in a separate pdf file.
>
> Please try:
>
> pdf(merge.fitting.file.path, onefile = TRUE)
>
> Kind regards,
> Hans
>
>
>
>
>
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 27 Sep 2011 21:41:06 +0200
> From: Davide Rambaldi <davide.rambaldi at gmail.com>
> To: TextMate users <textmate at lists.macromates.com>
> Subject: [TxMt] Re: R bundle have a BUG?
> Message-ID:
>        <CAEn6bVKKTz=B-yuK2LAMA+9zvM20mwgJPn-GhHALVX6Qk7S=Hw at mail.gmail.com
> >
> Content-Type: text/plain; charset=windows-1252
>
> Ok it's working with onefile = TRUE (I look at my result trough a web
> page and I did not notice the split of pdf :-)
>
> many thanks
>
> Davide
>
> 2011/9/27 Hans-J?rg Bibiko <bibiko at eva.mpg.de>:
> >
> > On 27 Sep 2011, at 17:06, Davide Rambaldi wrote:
> >
> >> Not sure where to post this problem (R devel, here, mailing list for the
> bundles?)
> > Here's the right place :)
> >
> >> I have the following problem:
> >>
> >> - I have a script that generate a PDF multiline using plot?
> >>
> >> pdf(merge.fitting.file.path)
> >> print(plot(parent.fitting))
> >> print(plot(my.fit))
> >> dev.off()
> >
> >
> > The easiest to check the default parameter settings for "pdf()" in a
> software environment execute:
> >
> >> args(pdf)
> > function (file = "/tmp/TM_R/Rplot%03d.pdf", width = 8, height = 8,
> > ? ?onefile = FALSE, family, title, fonts, version, paper, encoding,
> > ? ?bg, fg, pointsize, pagecentre, colormodel, useDingbats, useKerning,
> > ? ?fillOddEven, maxRasters)
> >
> >
> > Here you see that the parameter "onefile" is set to FALSE which means
> that each plot will go in a separate pdf file.
> >
> > Please try:
> >
> > pdf(merge.fitting.file.path, onefile = TRUE)
> >
> > Kind regards,
> > Hans
> >
> >
> >
> >
> >
> >
> > _______________________________________________
> > textmate mailing list
> > textmate at lists.macromates.com
> > http://lists.macromates.com/listinfo/textmate
> >
>
>
> ------------------------------
>
> Message: 4
> Date: Tue, 27 Sep 2011 22:42:54 +0200
> From: Hans-J?rg Bibiko <bibiko at eva.mpg.de>
> To: TextMate users <textmate at lists.macromates.com>
> Subject: [TxMt] Re: R bundle have a BUG?
> Message-ID: <F1675BAF-B906-42AC-BC5F-D311979745D7 at eva.mpg.de>
> Content-Type: text/plain; charset=us-ascii
>
>
> On 27 Sep 2011, at 21:41, Davide Rambaldi wrote:
>
> > Ok it's working with onefile = TRUE (I look at my result trough a web
> > page and I did not notice the split of pdf :-)
>
>
> ... and please note the following approach which is implemented in the R
> bundle:
>
> - each plot command will write its result into ONE pdf file (located in
> /tmp/TM_R/) automatically WITHOUT a preceding pdf() command; all generated
> pdf files (in /tmp/TM_R/) will be inserted as linked image in the HTML
> output window; that's why the parameter 'onefile' is set to FALSE as default
> - if you're using the command pdf() explicitly then the result will not be
> displayed in the HTML output window
>
> As an example one could write the following code to come up with resulting
> pdf in Preview:
>
> pdf(file='~/Desktop/x1.pdf', onefile=T)
> plot(10:1)
> plot(1:10)
> dev.off()
> system('open ~/Desktop/x1.pdf')
>
>
> or
>
>
> plot(1:3)
> plot(3:1)
> pdf(file='/tmp/TM_R/x1.pdf', onefile=T)
> plot(100:1)
> plot(1:100)
> dev.off()
>
>
>
> and click at third image to open it in Preview [third one due sorting
> Rplot00x.pdf, x1.pdf]
>
>
> Best,
> --Hans
>
> ------------------------------
>
> Message: 5
> Date: Wed, 28 Sep 2011 10:21:33 +0200
> From: Davide Rambaldi <davide.rambaldi at gmail.com>
> To: textmate at lists.macromates.com
> Subject: [TxMt] Lion Preferences: no resize
> Message-ID: <A2CE293C-2442-4136-9686-6B9792803656 at gmail.com>
> Content-Type: text/plain; charset=windows-1252
>
> Hi, in Lion 10.7 seems there is no way to resize the preference panel, that
> is a problem for the Advanced --> Shell Variables TAB (I have a very long
> PATH)?.
>
>
> Best Regards
>
> Davide
>
> ------------------------------
>
> Message: 6
> Date: Wed, 28 Sep 2011 12:23:40 +0200
> From: Daniel Dettlaff <dmilith at verknowsys.com>
> To: TextMate users <textmate at lists.macromates.com>
> Subject: [TxMt] Re: Lion Preferences: no resize
> Message-ID: <1976920.346201317205421742.JavaMail.root at draCore>
> Content-Type: text/plain; charset="windows-1252"
>
>
> On Sep 28, 2011, at 10:21 , Davide Rambaldi wrote:
>
> > Hi, in Lion 10.7 seems there is no way to resize the preference panel,
> that is a problem for the Advanced --> Shell Variables TAB (I have a very
> long PATH)?.
>
>
> +1
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: signature.asc
> Type: application/pgp-signature
> Size: 801 bytes
> Desc: Message signed with OpenPGP using GPGMail
> URL: <
> http://lists.macromates.com/textmate/attachments/20110928/1e44e601/attachment-0001.asc
> >
>
> ------------------------------
>
> _______________________________________________
> textmate mailing list
> textmate at lists.macromates.com
> http://lists.macromates.com/listinfo/textmate
>
> End of textmate Digest, Vol 40, Issue 32
> ****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macromates.com/textmate/attachments/20110928/7a02797b/attachment.html>


More information about the textmate mailing list