I am using Sublime Text 3 version 3.2.2, Build 3211.
The issue is that Sublime syntax highlighting does not work for wrongly typed PHP built-in functions. I want it to behave like Notepad++ and some other code editors where If you mistakenly type wrong PHP built-in functions then editor considers it as a normal plain text. So you are aware of typo and just in case if you don't exactly remember the function name. You can rectify mistake as soon as you see that code color didn't change to what they are set for reserved keywords.
I am taking an example of PHP built-in string function strlen().
In Notepad++
Here I deliberately typed strlen to strle to show you what I meant. Function name color turns to black:
When I type correct function name, the function name color becomes blue:
In Sublime Text 3
Wrong function name is still blue. You can't say it is typed right or wrong:
You can see that wrong PHP function does not change the color. So I can't figure out when I unintentionally type wrong function in large code. How can we fix this issue?



