Block comment syntax highlighting

It seems that block comments are treated as regular text, syntax wise. would it be possible to make block comments have the same coloring/highlighting as single-line comments?

copy and paste this into a new document to see how the block commented section receives the same formatting/coloring as the non-block comment section below it.

--[[
setup()
  print( "testing" )
end
--]]
setup()
  print( "test" )
end
draw()
end

This feature will be in next codea release.

Oh man! The suspense is killing me!