diff options
author | w0rp <devw0rp@gmail.com> | 2017-08-22 21:19:36 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-08-22 21:19:36 +0100 |
commit | 1a524ca63e51092ab10febea40a6f018b6e85173 (patch) | |
tree | 3d12ec01af3bfebd1bb59b7e6727f750f5641d8e /plugin/ale.vim | |
parent | 47a8ebc8b9ae76ee2b23e388d30324b97e102eed (diff) | |
download | ale-1a524ca63e51092ab10febea40a6f018b6e85173.zip |
#653 - Always set loclist or quickfix in a timer callback, which prevents errors E924, E925, and E926
Diffstat (limited to 'plugin/ale.vim')
-rw-r--r-- | plugin/ale.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index d33f3c5a..a9ab88a1 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -226,7 +226,6 @@ function! ALEInitAuGroups() abort autocmd BufWinEnter,BufRead * call ale#Queue(0, 'lint_file', str2nr(expand('<abuf>'))) " Track when the file is changed outside of Vim. autocmd FileChangedShellPost * call ale#events#FileChangedEvent(str2nr(expand('<abuf>'))) - autocmd BufWinLeave * call ale#events#BufWinLeave() endif augroup END |