diff options
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/engine.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/autoload/ale/engine.vim b/autoload/ale/engine.vim index 6cde4bf7..60cdf489 100644 --- a/autoload/ale/engine.vim +++ b/autoload/ale/engine.vim @@ -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) |