VBScript icon indicating copy to clipboard operation
VBScript copied to clipboard

Syntax highlighting not working on comments on the end of a line of code.

Open seanchase opened this issue 11 years ago • 0 comments

When a comment is at the end of code, it is not greyed out. This is fine.

'  Same as WScript.echo myEcho
sub wEcho( myEcho )
   WScript.echo myEcho
End Sub

This will not work. The VB.net parser here shows it is valid code.

sub wEcho( myEcho )   '  Same as WScript.echo myEcho
   WScript.echo myEcho
End Sub

seanchase avatar Jul 28 '14 01:07 seanchase