If you put something like _ArrayAdd in the highlighting, it will only highlight it if it is case-sensitive. I think it should also highlight it if it is _arrayadd or _aRRAyADD etc.
if _ArrayAdd is a function in the language itself, and not a function you've written... and the function works even if case is different - just like VBscript...
then you are right -- you will add support for case insensitiveness by adding 'i' to the language file...
look for the regex /(...something...|_ArrayAdd)/g <-- change to /gi
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
What language are you reffering to ? PHP ?
if _ArrayAdd is a function in the language itself, and not a function you've written... and the function works even if case is different - just like VBscript...
then you are right -- you will add support for case insensitiveness by adding 'i' to the language file...
look for the regex /(...something...|_ArrayAdd)/g <-- change to /gi