Syntastic: Disable automatic Checking on write

Created on 7 May 2017  路  1Comment  路  Source: vim-syntastic/syntastic

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 !

Most helpful comment

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 !

>All comments

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 !

Was this page helpful?
0 / 5 - 0 ratings

Related issues

PROgram52bc picture PROgram52bc  路  6Comments

olalonde picture olalonde  路  3Comments

duckpuppy picture duckpuppy  路  8Comments

rafee picture rafee  路  5Comments

ijanos picture ijanos  路  7Comments