• Executor.run will now write the block result to $stdout, changing the api slightly:
TextMate::Executor.run(ENV['TM_SHELL'] || ENV['SHELL'] || 'bash', ENV['TM_FILEPATH']) do |str, type|
str = htmlize(str)
str = "<span class=\"stderr\">#{htmlize(str)}</span>" if type == :out
end
Changed:
U trunk/Support/lib/tm/executor.rb