I have a few PHP cli scripts that looks like this
#!/usr/bin/env php
function blabla()
{
...
}
blabla();
Sublime detected them as PHP script but all text are white.
Then I changed the script to something like this
#!/usr/bin/env php
# <?php
function blabla()
{
...
}
blabla();
Now syntax highlight worked. Looks like a bug to me.
