I have installed Syntastic with Pathogen.
Syntastic works for Python files but not for JavaScript files with JSHint. JSHint works via command line or with other vim plugin like https://github.com/Shutnik/jshint2.vim
→ which jshint
/usr/local/share/npm/bin/jshint
→ jshint --version
jshint v2.1.10
→ echo $PATH
/usr/local/share/npm/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
When I run :SyntasticInfo, it doesn't find any checkers.
Syntastic info for filetype: javascript
Available checkers:
Currently active checker(s):
My vimrc
set nocompatible
filetype off
call pathogen#infect()
call pathogen#helptags()
filetype plugin indent on
syntax on
let g:syntastic_check_on_open=1
let g:syntastic_javascript_checkers = ['jshint']
I don't know what I've missed, if you have any idea why Syntastic doesn't detect JSHint. Thanks
Long story short; Syntastic needs the path of jshint.
I encountered a similar problem on Windows 8. After installing
nodejs
v0.10.22 andsyntastic
>= 3.2.0, the Vim command:SyntasticInfo
would give me:The documentation over at jshint.com/docs suggests that this is sufficient to install the module.
This is true, apart from a somewhat surprising meaning of flag -g installs JSHint globally on your system. It means in your user's %AppData% folder:
Another piece of documentation from the syntastic FAQ reads:
The solution amounts to setting the path of the
jshint
command in ~/.vimrc:Alternatively, one could:
and
let g:syntastic_jshint_exec='jshint.cmd'
. I didn't try the last solution with %PATH% because Winders doesn't like long %PATH% variables.Hopefully this saves you some time.