Fix #773 - Do not clear the loclist when closing the loclist window

This commit is contained in:
w0rp
2017-07-15 18:44:45 +01:00
parent 507e32e91c
commit cad9fc19c6
3 changed files with 50 additions and 1 deletions

View File

@@ -665,6 +665,10 @@ endfunction
" clear the state of everything, and remove the Dictionary for managing
" the buffer.
function! ale#engine#Cleanup(buffer) abort
if !has_key(g:ale_buffer_info, a:buffer)
return
endif
call ale#engine#RunLinters(a:buffer, [], 1)
call remove(g:ale_buffer_info, a:buffer)