Shougo
Shougo
No response...
I think it fixes my issue. https://github.com/neovim/pynvim/issues/478 The PR is completed?
I think `compat.py` and `scripts_host.py` needs to be changed.
I have imported your commit in https://github.com/neovim/pynvim/pull/486.
The PR is not easy. Because, `importlib` is not the same function.
Related changes: https://github.com/neovim/pynvim/pull/461
I have tested it and it works. But ```python nvim.run_coroutine(c) ``` It must be `nvim.run_coro(c)` instead.
Ah, OK. Thank you for the fix.
Hm.... I have tested it. The sleep works, but in subprocess cannot access neovim until RPC is finished. It is intended behavior?
> As a convenience a wrapper for the subprocess protocol is also added, which wraps the data handler in a greenlet (so that it can use nvim requests): Hm. This...