diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 198f973..d18cd2e 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -3051,6 +3051,7 @@ function! s:run_system(cmd, version) abort exec pyx . '__argv = {"args":vim.eval("a:cmd"), "shell":True}' exec pyx . '__argv["stdout"] = subprocess.PIPE' exec pyx . '__argv["stderr"] = subprocess.STDOUT' + exec pyx . '__argv["errors"] = "ignore"' exec pyx . '__pp = subprocess.Popen(**__argv, universal_newlines=True)' exec pyx . '__return_text = __pp.stdout.read()' exec pyx . '__pp.stdout.close()'