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@lists.macromates.comwrote:
Send textmate mailing list submissions to textmate@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@lists.macromates.com
You can reach the person managing the list at textmate-owner@lists.macromates.com
When replying, please edit your Subject line so it is more specific than "Re: Contents of textmate digest..."
Today's Topics:
- R bundle have a BUG? (Davide Rambaldi)
- Re: R bundle have a BUG? (Hans-J?rg Bibiko)
- Re: R bundle have a BUG? (Davide Rambaldi)
- Re: R bundle have a BUG? (Hans-J?rg Bibiko)
- Lion Preferences: no resize (Davide Rambaldi)
- Re: Lion Preferences: no resize (Daniel Dettlaff)
Message: 1 Date: Tue, 27 Sep 2011 17:06:49 +0200 From: Davide Rambaldi davide.rambaldi@gmail.com To: textmate@lists.macromates.com Subject: [TxMt] R bundle have a BUG? Message-ID: 6C0E9953-03A6-44C4-9A0E-A3172DD05253@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@eva.mpg.de To: TextMate users textmate@lists.macromates.com Subject: [TxMt] Re: R bundle have a BUG? Message-ID: E2B5D226-64C4-4E60-BEA3-7DE4EBE571D6@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@gmail.com To: TextMate users textmate@lists.macromates.com Subject: [TxMt] Re: R bundle have a BUG? Message-ID: <CAEn6bVKKTz=B-yuK2LAMA+9zvM20mwgJPn-GhHALVX6Qk7S=Hw@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@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@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@eva.mpg.de To: TextMate users textmate@lists.macromates.com Subject: [TxMt] Re: R bundle have a BUG? Message-ID: F1675BAF-B906-42AC-BC5F-D311979745D7@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@gmail.com To: textmate@lists.macromates.com Subject: [TxMt] Lion Preferences: no resize Message-ID: A2CE293C-2442-4136-9686-6B9792803656@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@verknowsys.com To: TextMate users textmate@lists.macromates.com Subject: [TxMt] Re: Lion Preferences: no resize Message-ID: 1976920.346201317205421742.JavaMail.root@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