Kapiainen / SublimePapyrus

A Sublime Text 2 and 3 package for the Papyrus scripting language.
MIT License
47 stars 8 forks source link

Array function parameter incorrect syntax highlighting #4

Closed xanderdunn closed 10 years ago

xanderdunn commented 10 years ago

You can see in the below screenshot that the syntax highlighting is off for a function parameter that is an array.

function_name

Kapiainen commented 10 years ago

Should be fixed now. Parameters with variable types that are missing one of the brackets ("Form[" or "Form]" instead of "Form[]") or with extra brackets ("Form[]]" or "Form[[]" instead of "Form[]") should be highlighted as invalid as well so that the user knows that something is wrong.

xanderdunn commented 10 years ago

Yep! Fixed! Thanks.