Fix #687 - Check files on enter if they have changed

This commit is contained in:
w0rp 2017-06-24 12:24:31 +01:00
parent fbf8ccb882
commit 1ea61162a0
5 changed files with 107 additions and 1 deletions

View File

@ -12,3 +12,22 @@ function! ale#events#SaveEvent() abort
call ale#Queue(0, 'lint_file')
endif
endfunction
function! s:LintOnEnter() abort
if g:ale_enabled && g:ale_lint_on_enter && has_key(b:, 'ale_file_changed')
call remove(b:, 'ale_file_changed')
call ale#Queue(0, 'lint_file')
endif
endfunction
function! ale#events#EnterEvent() abort
call s:LintOnEnter()
endfunction
function! ale#events#FileChangedEvent(buffer) abort
call setbufvar(a:buffer, 'ale_file_changed', 1)
if bufnr('') == a:buffer
call s:LintOnEnter()
endif
endfunction

View File

@ -407,6 +407,10 @@ g:ale_lint_on_enter *g:ale_lint_on_enter*
desired, this variable can be set to `0` in your vimrc file to disable this
behaviour.
The |FileChangedShellPost| and |BufEnter| events will be used to check if
files have been changed outside of Vim. If a file is changed outside of
Vim, it will be checked when it is next opened.
g:ale_lint_on_filetype_changed *g:ale_lint_on_filetype_changed*

View File

@ -209,6 +209,10 @@ function! ALEInitAuGroups() abort
autocmd!
if g:ale_enabled && g:ale_lint_on_enter
autocmd BufWinEnter,BufRead * call ale#Queue(300, 'lint_file')
" Track when the file is changed outside of Vim.
autocmd FileChangedShellPost * call ale#events#FileChangedEvent(str2nr(expand('<abuf>')))
" If the file has been changed, then check it again on enter.
autocmd BufEnter * call ale#events#EnterEvent()
endif
augroup END

View File

@ -112,12 +112,14 @@ Execute (g:ale_lint_on_enter = 0 should bind no events):
AssertEqual [], CheckAutocmd('ALERunOnEnterGroup')
Execute (g:ale_lint_on_enter = 1 should bind no BufReadPost and BufWinEnter):
Execute (g:ale_lint_on_enter = 1 should bind the required events):
let g:ale_lint_on_enter = 1
AssertEqual [
\ 'BufEnter * call ale#events#EnterEvent()',
\ 'BufReadPost * call ale#Queue(300, ''lint_file'')',
\ 'BufWinEnter * call ale#Queue(300, ''lint_file'')',
\ 'FileChangedShellPost * call ale#events#FileChangedEvent(str2nr(expand(''<abuf>'')))',
\], CheckAutocmd('ALERunOnEnterGroup')
Execute (g:ale_lint_on_filetype_changed = 0 should bind no events):

View File

@ -0,0 +1,77 @@
Before:
Save &filetype
Save g:ale_buffer_info
Save g:ale_lint_on_enter
let g:buf = bufnr('')
let g:ale_lint_on_enter = 1
let g:ale_run_synchronously = 1
function! TestCallback(buffer, output)
return [{
\ 'lnum': 1,
\ 'col': 3,
\ 'text': 'baz boz',
\}]
endfunction
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': 'true',
\ 'command': 'true',
\})
After:
Restore
unlet! g:buf
let g:ale_run_synchronously = 0
delfunction TestCallback
call ale#linter#Reset()
call setloclist(0, [])
Execute(The file changed event function should set b:ale_file_changed):
if has('gui')
new
else
e test
endif
call ale#events#FileChangedEvent(g:buf)
close
" We should set the flag in the other buffer
AssertEqual 1, getbufvar(g:buf, 'ale_file_changed')
Execute(The file changed event function should lint the current buffer when it has changed):
set filetype=foobar
call ale#events#FileChangedEvent(bufnr(''))
AssertEqual [{
\ 'bufnr': bufnr(''),
\ 'lnum': 1,
\ 'vcol': 0,
\ 'col': 3,
\ 'text': 'baz boz',
\ 'type': 'E',
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
\ }], getloclist(0)
Execute(The buffer should be checked after entering it after the file has changed):
let b:ale_file_changed = 1
set filetype=foobar
call ale#events#EnterEvent()
AssertEqual [{
\ 'bufnr': bufnr(''),
\ 'lnum': 1,
\ 'vcol': 0,
\ 'col': 3,
\ 'text': 'baz boz',
\ 'type': 'E',
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
\ }], getloclist(0)