Merge pull request #7185 from jamessan/fix-provider-clear_stderr

provider#clear_stderr: Use remove() not delete() to update s:stderr
This commit is contained in:
James McCoy 2017-08-18 13:56:53 -04:00 committed by GitHub
commit f465bf0cfa

View File

@ -10,7 +10,7 @@ function! provider#stderr_collector(chan_id, data, event) dict
endfunction
function! provider#clear_stderr(chan_id)
silent! call delete(s:stderr, a:chan_id)
silent! call remove(s:stderr, a:chan_id)
endfunction
function! provider#get_stderr(chan_id)