New (?) syntax highlighting bug
-
I'm pretty sure this bug is new for the update that launched today:
When using "/" to start a multi-line comment, an asterisk on a subsequent row will mean that "/" later on the row will not be discovered by the syntax highlighter.
For example, this will not work now:
/* comment * */ loop update() repeat
-
This is already a known issue but thanks for reporting it.
I stumbled across it early on because I am used to adding JavaDoc to programs.
The only way the multiline comments work at the moment is if the end is simply
*/
So this will work:
/***** * * */
But this will not:
/**** * * ****/