I've installed Syntastic plugin in vim. I can't get it to work. I've tried :SyntasticEnable
but no luck. SyntasticEnable python
in my vimrc doesn't work either (in fact, it doesn't even parse the command, an error is shown when I try to add it to my .vimrc
: Not an editor command: SyntasticEnable python
).
How can I know what's going on? Syntastic isn't showing errors when I call it from vim. Does the first error (not and editor command
in my .vimrc
) indicates something I'm unaware of?
I have in my .vimrc:
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_enable_signs=1
let g:syntastic_auto_loc_list=1
I have a python.vim
in ~/.vim/syntax_checkers
as well. I can already use Pyflakes for python files, it works GREAT but I would like to have Syntastic functionality in other files/extensions I need when developing applications.