Fix #796 - Ignore errors for closing the last window

This commit is contained in:
w0rp 2017-07-24 09:29:54 +01:00
parent e0c014ab8c
commit e45c16d9bb

View File

@ -59,13 +59,17 @@ function! ale#list#CloseWindowIfNeeded(buffer) abort
return
endif
" Only close windows if the quickfix list or loclist is completely empty,
" including errors set through other means.
if g:ale_set_quickfix
if empty(getqflist())
cclose
try
" Only close windows if the quickfix list or loclist is completely empty,
" including errors set through other means.
if g:ale_set_quickfix
if empty(getqflist())
cclose
endif
elseif g:ale_set_loclist && empty(getloclist(0))
lclose
endif
elseif g:ale_set_loclist && empty(getloclist(0))
lclose
endif
" Ignore 'Cannot close last window' errors.
catch /E444/
endtry
endfunction