In order to speed up Vim I disable syntactic on open, and I active :SyntasticCheck when I need . Is there a way to disable auto checking when I save a file (:w) ? Thanks in advance !
I solved by this conf
let g:syntastic_mode_map = { 'mode': 'passive',
\ 'active_filetypes': ['python'],
\ 'passive_filetypes': ['html', 'javascript'] }
When I save js files this doesn't call the checker and I call syntastic on demand . Thanks anyway !
Most helpful comment
I solved by this conf
When I save js files this doesn't call the checker and I call syntastic on demand . Thanks anyway !