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.
2 parents 4280e49 + 36b2732 commit 9ac47fbCopy full SHA for 9ac47fb
neovim/msgpack_rpc/event_loop/asyncio.py
@@ -59,7 +59,7 @@ def pipe_connection_lost(self, fd, exc):
59
60
def pipe_data_received(self, fd, data):
61
"""Used to signal `asyncio.SubprocessProtocol` of incoming data."""
62
- if fd == sys.stderr.fileno():
+ if fd == 2: # stderr fd number
63
self._on_stderr(data)
64
elif self._on_data:
65
self._on_data(data)
0 commit comments