Try to cut and then "paste and indent" the "puts e" line in the following to reproduce:
- Code: Select all
list.each { |e|
puts e
}
list.each do |e|
puts e
end
%w(a b c).each do |e|
puts e
end
%w(
a b c
).each do |e|
puts e
end
In TM, you get the exact same indentation. In ST:
- Code: Select all
list.each { |e|
puts e
}
list.each do |e|
puts e
end
%w(a b c).each do |e|
puts e
end
%w(
a b c
).each do |e|
puts e
end
Can you confirm you can reproduce this?