mirror of https://github.com/dense-analysis/ale
Run a lint cycle after fixing problems
This commit is contained in:
parent
18467a55b5
commit
74691269ce
|
@ -41,6 +41,12 @@ function! ale#fix#ApplyQueuedFixes() abort
|
||||||
silent execute l:start_line . ',' . l:end_line . 'd'
|
silent execute l:start_line . ',' . l:end_line . 'd'
|
||||||
call winrestview(l:save)
|
call winrestview(l:save)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
" If ALE linting is enabled, check for problems with the file again after
|
||||||
|
" fixing problems.
|
||||||
|
if g:ale_enabled
|
||||||
|
call ale#Queue(g:ale_lint_delay)
|
||||||
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:ApplyFixes(buffer, output) abort
|
function! s:ApplyFixes(buffer, output) abort
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
Before:
|
Before:
|
||||||
Save g:ale_fixers, &shell
|
Save g:ale_fixers, &shell, g:ale_enabled
|
||||||
|
let g:ale_enabled = 0
|
||||||
let g:ale_run_synchronously = 1
|
let g:ale_run_synchronously = 1
|
||||||
let g:ale_fixers = {
|
let g:ale_fixers = {
|
||||||
\ 'testft': [],
|
\ 'testft': [],
|
||||||
|
@ -31,6 +32,7 @@ Before:
|
||||||
function RemoveLastLine(buffer, lines) abort
|
function RemoveLastLine(buffer, lines) abort
|
||||||
return ['a', 'b']
|
return ['a', 'b']
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
After:
|
After:
|
||||||
Restore
|
Restore
|
||||||
unlet! g:ale_run_synchronously
|
unlet! g:ale_run_synchronously
|
||||||
|
|
Loading…
Reference in New Issue