10 lines
478 B
VimL
10 lines
478 B
VimL
" When writing a buffer (no delay).
|
|
call neomake#configure#automake('w')
|
|
" When writing a buffer (no delay), and on normal mode changes (after 750ms).
|
|
call neomake#configure#automake('nw', 750)
|
|
" When reading a buffer (after 1s), and when writing (no delay).
|
|
call neomake#configure#automake('rw', 1000)
|
|
" Full config: when writing or reading a buffer, and on changes in insert and
|
|
" normal mode (after 500ms; no delay when writing).
|
|
call neomake#configure#automake('nrwi', 500)
|