diff options
author | James McCoy <jamessan@jamessan.com> | 2020-06-10 13:24:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 13:24:45 -0400 |
commit | dcd6cf5f3409f5fdab03bc82887efea02a597f3b (patch) | |
tree | d65d1445fcf8befb2ea556b180bd3d05019f7bc1 /runtime/autoload/provider/pythonx.vim | |
parent | d8c5d122f1ba95bc71a78c5d70465bfa88623bd7 (diff) | |
parent | d17e38e48209c19b63d809c5b807613f15aa03c8 (diff) | |
download | rneovim-dcd6cf5f3409f5fdab03bc82887efea02a597f3b.tar.gz rneovim-dcd6cf5f3409f5fdab03bc82887efea02a597f3b.tar.bz2 rneovim-dcd6cf5f3409f5fdab03bc82887efea02a597f3b.zip |
Merge pull request #11819 from erw7/fix-dot-net-stdin
[RDY] win: make UV_OVERLAPPED_PIPE optional
Diffstat (limited to 'runtime/autoload/provider/pythonx.vim')
-rw-r--r-- | runtime/autoload/provider/pythonx.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/provider/pythonx.vim b/runtime/autoload/provider/pythonx.vim index ffb9bf3021..e89d519790 100644 --- a/runtime/autoload/provider/pythonx.vim +++ b/runtime/autoload/provider/pythonx.vim @@ -19,7 +19,7 @@ function! provider#pythonx#Require(host) abort call add(args, plugin.path) endfor - return provider#Poll(args, a:host.orig_name, '$NVIM_PYTHON_LOG_FILE') + return provider#Poll(args, a:host.orig_name, '$NVIM_PYTHON_LOG_FILE', {'overlapped': v:true}) endfunction function! s:get_python_executable_from_host_var(major_version) abort |