PHP linting is not working in SublimeLinter though it says PHP: loaded in the console. I'm working on Windows. Additionally, there are no options if i open the Command Palette except of Extract Annotations. Did anyone had the same problem and knows the solution?
|
|
||||
|
|
|
Additionally, make sure you've given the path to php.exe in your user settings -
{ "sublimelinter": true, "sublimelinter_executable_map": { "php":"/xampp/php/php.exe" } } |
|||
|
|
|
I just had the same issue. The cause for my problem was that all PHP files where opened with the HTML5 syntax. You can check the current syntax by pasting the following command in your SublimeText console:
To set php as a default for the current file type, you can go to: view > syntax > Open all current extensions as... > php Hope this helps! |
|||
|
|
|
For my Windows i had to go with this: php.exe file path on Windows 7 didn't do the trick for me, while php-win.exe did:
|
|||
|
|
|
For windows I did this and it worked, use \\ and it should work!
|
||||
|
|