diff options
author | ckelsel <ckelsel@hotmail.com> | 2017-08-21 09:19:08 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-08-21 09:19:08 +0800 |
commit | 0b6fa3a553da3b83419c48fcbb6fb3ec413598e0 (patch) | |
tree | 63cda34cb93df36f64be4beea934ee34d850104c /runtime/autoload/provider.vim | |
parent | 673fc748237345914e0ad584bc4cba997c96a37e (diff) | |
parent | 8d1ccb606d3806dcf9c4bcfdb0446d8139c0e765 (diff) | |
download | rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.tar.gz rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.tar.bz2 rneovim-0b6fa3a553da3b83419c48fcbb6fb3ec413598e0.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'runtime/autoload/provider.vim')
-rw-r--r-- | runtime/autoload/provider.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/provider.vim b/runtime/autoload/provider.vim index a4d5241b57..b46ae12b3c 100644 --- a/runtime/autoload/provider.vim +++ b/runtime/autoload/provider.vim @@ -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) |