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,6 +59,7 @@ function! ale#list#CloseWindowIfNeeded(buffer) abort
return
endif
try
" Only close windows if the quickfix list or loclist is completely empty,
" including errors set through other means.
if g:ale_set_quickfix
@ -68,4 +69,7 @@ function! ale#list#CloseWindowIfNeeded(buffer) abort
elseif g:ale_set_loclist && empty(getloclist(0))
lclose
endif
" Ignore 'Cannot close last window' errors.
catch /E444/
endtry
endfunction