On 1/19/07, Alexander Ross <alex.j.ross@gmail.com> wrote:
Alain,

The latest version of $TM_SUPPORT_PATH/lib/scriptmate.rb is available
from TextMate's svn repository.  This page gives instructions on how
to do that:
http://macromates.com/wiki/Main/SubversionCheckout

Once you've got the latest version of TextMate's Bundles and Support
path, you'll be able to use the example command[1] I mentioned before
(or modify it to your purposes).

I hope this helps?

– Alex

[1]: http://pastie.textmate.org/27909

thanks for the post, it helped me get some of my commands going.

perhaps worth noting, the pastie above should probably use
  #!/usr/bin/env ruby
rather than hardcoding the system defined no?

and also, scriptmate.rb should probably be a bit more cautious in its require statements or else $:. rather than:
  require 'escape'
it could:
  require File.expand_path("../escape", __FILE__)
or some variation therein, that way people can write their own scripts which require scriptmate and not be concerned with the include paths and what not.

cheers,
jean-pierre