From e45c16d9bbcf7b9df09ce40ef467b13a49108487 Mon Sep 17 00:00:00 2001 From: w0rp Date: Mon, 24 Jul 2017 09:29:54 +0100 Subject: [PATCH] Fix #796 - Ignore errors for closing the last window --- autoload/ale/list.vim | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/autoload/ale/list.vim b/autoload/ale/list.vim index 75b4ef38..9fe35bf3 100644 --- a/autoload/ale/list.vim +++ b/autoload/ale/list.vim @@ -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