You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a tracking issue for a potential issue noticed in #414 (comment)
Problem
proc.on('close') does not always trigger on nvim.quit(). Based on the failures demonstrated in #418, it appears that sometimes the child (nvim) does not close the stderr pipe:
This is a tracking issue for a potential issue noticed in #414 (comment)
Problem
proc.on('close')
does not always trigger onnvim.quit()
. Based on the failures demonstrated in #418, it appears that sometimes the child (nvim
) does not close the stderr pipe:Solution
proc.on('close')
is unreliable.proc.on('exit')
as a workaround.fclose(stderr)
does not pass the tests in this PR. Nor does addingfclose(stderr)
anywhere else AFAICT.The text was updated successfully, but these errors were encountered: