Last week I found this awesome text editor "Sublime Text 3" and I love the plugins.
Everything is working except the SublimeLinter plugin and the plugins that add language specific linting to it.
I have a problem with PHP and JavaScript working together with the following:
php does work but I dont know how to get JavaScript to work. For php what I did is go to Pref>pac set>Sublime Linter>Settings-User Then I set the following:
"paths": { "linux": [], "osx": [], "windows": [ "C:/Users/**/Documents/php-5.5.11-nts-Win32-VC11-x86/" ] },
(in the ** is my pc name)
That is working perfectly. But I know I have to install node.js that is what I have done.
I made a build system:
{ "cmd": ["C:/Program Files/nodejs", "$file"], "selector": "source.js" }
It is not working, and did this one too:
{ "cmd": ["node", "$file"], }
I have installed: sublimelinter, sublimelinter-php, sublimelinter-jsl, and sublimelinter-jshint.
It would be very nice if you could explain everything step by step what to do to fix this.