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 f048531 commit 5de9f2eCopy full SHA for 5de9f2e
pynvim/msgpack_rpc/event_loop/asyncio.py
@@ -68,7 +68,7 @@ def pipe_connection_lost(self, fd, exc):
68
def pipe_data_received(self, fd, data):
69
"""Used to signal `asyncio.SubprocessProtocol` of incoming data."""
70
if fd == 2: # stderr fd number
71
- self._on_stderr(data)
+ self._on_error(data)
72
elif self._on_data:
73
self._on_data(data)
74
else:
0 commit comments