>
>>>> I'm getting this error after copying the new command line tools to /
>>>> usr/local/bin:
>>>> tm: you need to update this helper tool.
>
> This is actually quite strange, since the protocol used to
> communicate with TM and the tool is at the same version as it has
> always been (so no combination of TM and the tool should give this
> error).
>
> The only reason I see is that the TM started actually predates
> implementation of the protocol. Do you keep old versions of TM
> somewhere on your disk (even the trash counts here)?
Nope, no old versions on disk. However the issue mysteriously
disappeared when I checked just now.
*crosses fingers*
- Ben
With relative frequency, I have to open a bunch of related files with
similar name. Before the latest betas, I could just hit cmd T repeated
times and open each at a time.
Now that TextMate clears the search to display the last opened items,
it's a bit more cumbersome to do it. So maybe TM could allow multiple
selection in the Go To File window, so that I can open them all at
once. (via both mouse and keyboard, prererably) What do you think?
if you put an inline comment in PHP on the first line of a function
declaration, something like that for instance:
function thumbnail_table($name='off', $size='off', $dimensions='off')
{ // values - 'name' 'size' 'dimensions'
it will mess up the little arrow thinggy for text folding.
.........................................
m i n i m a l d e s i g n
244 Fifth Avenue - Suite P233
New York, NY 10001-7604
USA
tel / fax: 212.931.8525
email: work(a)minimaldesign.net
site: http://minimaldesign.net/
> > Works for me -- using latest build (http://get.textmate.org/):
> >
> > cmd N (new buffer)
> > Paste previous 3 lines
> > option-ctrl-shift R (switch to Ruby)
> > cmd R (Run Ruby)
> >
> > And this is what I see:
> >
> >
> > <pastedGraphic.png>
> >
> > Entering a string and pressing return outputs the strings and
> finishes the program.
> >
> >
>
> The latest build works! Thank you.
>
> Bill
Latest build (478) does not work for me with this. Cheers,
Ben
___________________
Ben Jackson
Diretor de Desenvolvimento
ben(a)incomumdesign.com
http://www.incomumdesign.com
FWIW, I would request that core JS methods be kept separate from HTML-JS-DOM specific bindings.
To be clear, clientX, et al are not in the core JS language, but rather are properties of objects exposed by HTML user agents. For a list of ECMAScript-specific objects, properties and methods, see
http://phrogz.net/ObjJob/objects.asp?langID=4http://phrogz.net/ObjJob/properties.asp?langID=4 <http://phrogz.net/ObjJob/properties.asp?langID=4http://phrogz.net/ObjJob/ob…>
http://phrogz.net/ObjJob/methods.asp?langID=4
________________________________
From: textmate-bounces(a)lists.macromates.com on behalf of Andreas Wahlin
Sent: Mon 9/19/2005 9:07 AM
To: TextMate users
Subject: [TxMt] addittion to JavaScript bundle
While poking around there I found some other things that should be
added (?)
clientX,clientY,scrollLeft,scrollTop,style
for support.constant.js
appendChild
for support.function.js
and support.function.event-handler.js should, I think, be made to
ignore case.
It would be cool if the one thing after styl. could be somehow me
matched to the css rules ...
er ... somethnig like this?
{ name = "support.constant.js";
begin = "\\.\\b(style)\\.";
end = "\\s*";
captures = { 1 = { name = "support.constant.js"; }; };
patterns = (
{ include = "#tag-stuff"; },
{ begin = "\\.";
end = "\\s*";
patterns = ( { include = "source.css"; } );
},
);
},
Andreas
______________________________________________________________________
For new threads USE THIS: textmate(a)lists.macromates.com
(threading gets destroyed and the universe will collapse if you don't)
http://lists.macromates.com/mailman/listinfo/textmate
On Sep 30, 2005, at 10:15 AM, textmate-request(a)lists.macromates.com
wrote:
>
> From: Allan Odgaard <allan(a)macromates.com>
> Date: September 30, 2005 10:14:31 AM EDT
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] Re: Input from gets in Ruby (Sune Foldager)
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On 30/09/2005, at 16.09, William M Shobe wrote:
>
>
>> I have tried using gets and no input dialog pops up. Here is my
>> code:
>>
>> puts "this is a test"
>> puts gets
>> puts "end of test"
>>
>> I use Run Ruby, and here is the output:
>>
>
> Works for me -- using latest build (http://get.textmate.org/):
>
> cmd N (new buffer)
> Paste previous 3 lines
> option-ctrl-shift R (switch to Ruby)
> cmd R (Run Ruby)
>
> And this is what I see:
>
>
> <pastedGraphic.png>
>
> Entering a string and pressing return outputs the strings and
> finishes the program.
>
>
The latest build works! Thank you.
Bill
PS When I download the latest build, there is a second file called
"mate". Is there something I need to do with this file?
I have tried using gets and no input dialog pops up. Here is my code:
puts "this is a test"
puts gets
puts "end of test"
I use Run Ruby, and here is the output:
this is a test
puts "this is a test"
end of test
Bill
> From: William M Shobe <shobe(a)virginia.edu>
> Date: September 29, 2005 10:28:59 AM EDT
> To: textmate(a)lists.macromates.com
> Subject: [TxMt] Input from gets in Ruby
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> Please excuse the simple question, but I am experimenting with
> TextMate and Ruby. The output from running a Ruby script goes to a
> stdout window. However, I can't figure out how to get input from
> the gets method. Is there any way to read from stdin when running
> a Ruby script from the Run Command>Ruby>Run Ruby menu?
>
> Thanks for any help.
>
> Bill Shobe
>
>
>
>
>
> From: Sune Foldager <cryo(a)cyanite.org>
> Date: September 29, 2005 12:08:58 PM EDT
> To: TextMate users <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] Input from gets in Ruby
> <snip>
> Yes, this happens automatically, but stdin is redirected to read
> input from a dialog which should pop up whenever your script does a
> gets or similar.
>
> -- Sune.
>
>
> <snip>
>
> From: Sune Foldager <cryo(a)cyanite.org>
> Date: September 29, 2005 1:58:10 PM EDT
> To: Kumar McMillan <kumar.mcmillan(a)gmail.com>, TextMate users
> <textmate(a)lists.macromates.com>
> Subject: Re: [TxMt] Input from gets in Ruby
> Reply-To: TextMate users <textmate(a)lists.macromates.com>
>
>
> On 29/09/2005, at 19.54, Kumar McMillan wrote:
>
>
>> oh, hehe, it is just the Run Ruby command. Sorry, I thought you
>> meant
>> this was built into TextMate!
>>
>
> Nope :-p, but it's built into the Run Python command also :-).
>
> -- Sune.
>
Please excuse the simple question, but I am experimenting with TextMate
and Ruby. The output from running a Ruby script goes to a stdout
window. However, I can't figure out how to get input from the gets
method. Is there any way to read from stdin when running a Ruby script
from the Run Command>Ruby>Run Ruby menu?
Thanks for any help.
Bill Shobe
I've started a very rudimentary TextMate language bundle for Django
templates (http://djangoproject.com). It's just a bunch of snippets
for tab-completion of the standard template tags and a very basic
language definition for syntax coloring.
I'm new to tmbundles, so everything is extremely basic and naive right
now, but if anybody out there is editing Django templates and using
TextMate, feel free to give it a whirl and let me know what does and
doesn't work. Suggestions or additions are welcome.
Grab the bundle here:
http://media.wilsonminer.com/images/django/Django.tmbundle.zip