<span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 13px; background-color: rgb(255, 255, 255); ">> 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)?.<br>
<br></span>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.<div>
<div><br></div><div>Brandon<br><br><div class="gmail_quote">On Wed, Sep 28, 2011 at 5:00 AM,  <span dir="ltr"><<a href="mailto:textmate-request@lists.macromates.com">textmate-request@lists.macromates.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Send textmate mailing list submissions to<br>
        <a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.macromates.com/listinfo/textmate" target="_blank">http://lists.macromates.com/listinfo/textmate</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:textmate-request@lists.macromates.com">textmate-request@lists.macromates.com</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:textmate-owner@lists.macromates.com">textmate-owner@lists.macromates.com</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of textmate digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1.   R bundle have a BUG? (Davide Rambaldi)<br>
   2.  Re: R bundle have a BUG? (Hans-J?rg Bibiko)<br>
   3.  Re: R bundle have a BUG? (Davide Rambaldi)<br>
   4.  Re: R bundle have a BUG? (Hans-J?rg Bibiko)<br>
   5.  Lion Preferences: no resize (Davide Rambaldi)<br>
   6.  Re: Lion Preferences: no resize (Daniel Dettlaff)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Tue, 27 Sep 2011 17:06:49 +0200<br>
From: Davide Rambaldi <<a href="mailto:davide.rambaldi@gmail.com">davide.rambaldi@gmail.com</a>><br>
To: <a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a><br>
Subject: [TxMt]  R bundle have a BUG?<br>
Message-ID: <<a href="mailto:6C0E9953-03A6-44C4-9A0E-A3172DD05253@gmail.com">6C0E9953-03A6-44C4-9A0E-A3172DD05253@gmail.com</a>><br>
Content-Type: text/plain; charset=windows-1252<br>
<br>
Hi, first of all, congrats for your editor: is the best.<br>
<br>
Not sure where to post this problem (R devel, here, mailing list for the bundles?)<br>
<br>
Anyway: I am trying to use the R bundle (R statistical language).<br>
<br>
I have the following problem:<br>
<br>
- I have a script that generate a PDF multiline using plot?<br>
<br>
pdf(merge.fitting.file.path)<br>
print(plot(parent.fitting))<br>
print(plot(my.fit))<br>
dev.off()<br>
<br>
everything is working ok from R console or R CMD BATCH : I get back my multiline PDF<br>
<br>
When I run the scripts inside textMate (with cmd-R) only THE LAST PAGE of the pdf is recorder in the file!<br>
<br>
Can you please suggest me where to post this BUG?<br>
<br>
Thanks<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Tue, 27 Sep 2011 20:40:46 +0200<br>
From: Hans-J?rg Bibiko <<a href="mailto:bibiko@eva.mpg.de">bibiko@eva.mpg.de</a>><br>
To: TextMate users <<a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>><br>
Subject: [TxMt] Re: R bundle have a BUG?<br>
Message-ID: <<a href="mailto:E2B5D226-64C4-4E60-BEA3-7DE4EBE571D6@eva.mpg.de">E2B5D226-64C4-4E60-BEA3-7DE4EBE571D6@eva.mpg.de</a>><br>
Content-Type: text/plain; charset=windows-1252<br>
<br>
<br>
On 27 Sep 2011, at 17:06, Davide Rambaldi wrote:<br>
<br>
> Not sure where to post this problem (R devel, here, mailing list for the bundles?)<br>
Here's the right place :)<br>
<br>
> I have the following problem:<br>
><br>
> - I have a script that generate a PDF multiline using plot?<br>
><br>
> pdf(merge.fitting.file.path)<br>
> print(plot(parent.fitting))<br>
> print(plot(my.fit))<br>
> dev.off()<br>
<br>
<br>
The easiest to check the default parameter settings for "pdf()" in a software environment execute:<br>
<br>
> args(pdf)<br>
function (file = "/tmp/TM_R/Rplot%03d.pdf", width = 8, height = 8,<br>
    onefile = FALSE, family, title, fonts, version, paper, encoding,<br>
    bg, fg, pointsize, pagecentre, colormodel, useDingbats, useKerning,<br>
    fillOddEven, maxRasters)<br>
<br>
<br>
Here you see that the parameter "onefile" is set to FALSE which means that each plot will go in a separate pdf file.<br>
<br>
Please try:<br>
<br>
pdf(merge.fitting.file.path, onefile = TRUE)<br>
<br>
Kind regards,<br>
Hans<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Tue, 27 Sep 2011 21:41:06 +0200<br>
From: Davide Rambaldi <<a href="mailto:davide.rambaldi@gmail.com">davide.rambaldi@gmail.com</a>><br>
To: TextMate users <<a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>><br>
Subject: [TxMt] Re: R bundle have a BUG?<br>
Message-ID:<br>
        <CAEn6bVKKTz=B-yuK2LAMA+9zvM20mwgJPn-GhHALVX6Qk7S=<a href="mailto:Hw@mail.gmail.com">Hw@mail.gmail.com</a>><br>
Content-Type: text/plain; charset=windows-1252<br>
<br>
Ok it's working with onefile = TRUE (I look at my result trough a web<br>
page and I did not notice the split of pdf :-)<br>
<br>
many thanks<br>
<br>
Davide<br>
<br>
2011/9/27 Hans-J?rg Bibiko <<a href="mailto:bibiko@eva.mpg.de">bibiko@eva.mpg.de</a>>:<br>
><br>
> On 27 Sep 2011, at 17:06, Davide Rambaldi wrote:<br>
><br>
>> Not sure where to post this problem (R devel, here, mailing list for the bundles?)<br>
> Here's the right place :)<br>
><br>
>> I have the following problem:<br>
>><br>
>> - I have a script that generate a PDF multiline using plot?<br>
>><br>
>> pdf(merge.fitting.file.path)<br>
>> print(plot(parent.fitting))<br>
>> print(plot(my.fit))<br>
>> dev.off()<br>
><br>
><br>
> The easiest to check the default parameter settings for "pdf()" in a software environment execute:<br>
><br>
>> args(pdf)<br>
> function (file = "/tmp/TM_R/Rplot%03d.pdf", width = 8, height = 8,<br>
> ? ?onefile = FALSE, family, title, fonts, version, paper, encoding,<br>
> ? ?bg, fg, pointsize, pagecentre, colormodel, useDingbats, useKerning,<br>
> ? ?fillOddEven, maxRasters)<br>
><br>
><br>
> Here you see that the parameter "onefile" is set to FALSE which means that each plot will go in a separate pdf file.<br>
><br>
> Please try:<br>
><br>
> pdf(merge.fitting.file.path, onefile = TRUE)<br>
><br>
> Kind regards,<br>
> Hans<br>
><br>
><br>
><br>
><br>
><br>
><br>
> _______________________________________________<br>
> textmate mailing list<br>
> <a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a><br>
> <a href="http://lists.macromates.com/listinfo/textmate" target="_blank">http://lists.macromates.com/listinfo/textmate</a><br>
><br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Tue, 27 Sep 2011 22:42:54 +0200<br>
From: Hans-J?rg Bibiko <<a href="mailto:bibiko@eva.mpg.de">bibiko@eva.mpg.de</a>><br>
To: TextMate users <<a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>><br>
Subject: [TxMt] Re: R bundle have a BUG?<br>
Message-ID: <<a href="mailto:F1675BAF-B906-42AC-BC5F-D311979745D7@eva.mpg.de">F1675BAF-B906-42AC-BC5F-D311979745D7@eva.mpg.de</a>><br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
<br>
On 27 Sep 2011, at 21:41, Davide Rambaldi wrote:<br>
<br>
> Ok it's working with onefile = TRUE (I look at my result trough a web<br>
> page and I did not notice the split of pdf :-)<br>
<br>
<br>
... and please note the following approach which is implemented in the R bundle:<br>
<br>
- 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<br>

- if you're using the command pdf() explicitly then the result will not be displayed in the HTML output window<br>
<br>
As an example one could write the following code to come up with resulting pdf in Preview:<br>
<br>
pdf(file='~/Desktop/x1.pdf', onefile=T)<br>
plot(10:1)<br>
plot(1:10)<br>
dev.off()<br>
system('open ~/Desktop/x1.pdf')<br>
<br>
<br>
or<br>
<br>
<br>
plot(1:3)<br>
plot(3:1)<br>
pdf(file='/tmp/TM_R/x1.pdf', onefile=T)<br>
plot(100:1)<br>
plot(1:100)<br>
dev.off()<br>
<br>
<br>
<br>
and click at third image to open it in Preview [third one due sorting Rplot00x.pdf, x1.pdf]<br>
<br>
<br>
Best,<br>
--Hans<br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Wed, 28 Sep 2011 10:21:33 +0200<br>
From: Davide Rambaldi <<a href="mailto:davide.rambaldi@gmail.com">davide.rambaldi@gmail.com</a>><br>
To: <a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a><br>
Subject: [TxMt] Lion Preferences: no resize<br>
Message-ID: <<a href="mailto:A2CE293C-2442-4136-9686-6B9792803656@gmail.com">A2CE293C-2442-4136-9686-6B9792803656@gmail.com</a>><br>
Content-Type: text/plain; charset=windows-1252<br>
<br>
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)?.<br>
<br>
<br>
Best Regards<br>
<br>
Davide<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Wed, 28 Sep 2011 12:23:40 +0200<br>
From: Daniel Dettlaff <<a href="mailto:dmilith@verknowsys.com">dmilith@verknowsys.com</a>><br>
To: TextMate users <<a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a>><br>
Subject: [TxMt] Re: Lion Preferences: no resize<br>
Message-ID: <1976920.346201317205421742.JavaMail.root@draCore><br>
Content-Type: text/plain; charset="windows-1252"<br>
<br>
<br>
On Sep 28, 2011, at 10:21 , Davide Rambaldi wrote:<br>
<br>
> 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)?.<br>
<br>
<br>
+1<br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: signature.asc<br>
Type: application/pgp-signature<br>
Size: 801 bytes<br>
Desc: Message signed with OpenPGP using GPGMail<br>
URL: <<a href="http://lists.macromates.com/textmate/attachments/20110928/1e44e601/attachment-0001.asc" target="_blank">http://lists.macromates.com/textmate/attachments/20110928/1e44e601/attachment-0001.asc</a>><br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
textmate mailing list<br>
<a href="mailto:textmate@lists.macromates.com">textmate@lists.macromates.com</a><br>
<a href="http://lists.macromates.com/listinfo/textmate" target="_blank">http://lists.macromates.com/listinfo/textmate</a><br>
<br>
End of textmate Digest, Vol 40, Issue 32<br>
****************************************<br>
</blockquote></div><br></div></div>