Hello all,
I am using the ruby bundle a lot, and I like it so much! But there are some annoyances where I have to decide between using TM/folding or rewriting my code. IMO the editor/grammar should not be confused by correct ruby syntax. I am using the latest textmate (downloaded today, 1258) and don't have any changes to the ruby bundle. I know, I could fix these in my copy of the ruby bundle, but I'd like to see the fixes in the distribution. Thanks in advance,
Patrick
-------------------------------------------------- lines=%{a b # <--- I'd like to have no indentation here on 'reindent' c} # missing folding marker
lines.collect do |line| line end.class # missing folding marker
tmp = lines.somemeth { |l| l.upcase }.foo # missing folding marker, wrong indentation
a = myvar.each do |x| x.foo end
def baz a=case foo # missing folding marker (or the one at the end is one too many) when :b # and incorrect indentation c when :d e end end --------------------------------------------------