Hi, I found one issue with syntax highlighting:
variable name in double quotes is interpolated and should have variable haighliting, look how it is in VIM:
[size=85]my $num = 99;
print “number = $num\n”;[/size]
but in Sublime Text the same script highlighting works incorrect:
[size=85]my $num = 99;
print “number = $num\n”;[/size]
so variable $num is not recognized in double quotes. Arrays @num - either not recognized. Do you know how to fix highlighting?