Hi, Bram. Below is a patch to enable job_getchannel on Windows.
https://gist.github.com/mattn/7669319349f19a1773b6 test_channel.vim should work with following patch. But test_channel.vim have a problem that doesn't work with python provided on msys2/mingw64. The patch for this problem will be present from Ken Takata in later. - mattn diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim index 0e87899..b91375b 100644 --- a/src/testdir/test_channel.vim +++ b/src/testdir/test_channel.vim @@ -280,7 +280,7 @@ func Test_connect_waittime() endfunc func Test_pipe() - if !has('job') || !has('unix') + if !has('job') return endif let job = job_start("python test_channel_pipe.py") -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
