We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f55d1 commit 549f721Copy full SHA for 549f721
neovim/msgpack_rpc/event_loop/asyncio.py
@@ -93,6 +93,8 @@ def _connect_stdio(self):
93
self._loop.run_until_complete(coroutine)
94
95
def _connect_child(self, argv):
96
+ self._child_watcher = asyncio.get_child_watcher()
97
+ self._child_watcher.attach_loop(self._loop)
98
coroutine = self._loop.subprocess_exec(self._fact, *argv)
99
100
0 commit comments