neovim / node-client

Nvim Node.js client and plugin host
https://neovim.io/node-client/
MIT License
492 stars 53 forks source link

Nvim crashes or node exits when accessing any NeovimClient api #324

Closed saidelike closed 8 months ago

saidelike commented 9 months ago

It is due to line buffering being used when communicating with nvim. See https://github.com/neovim/neovim/issues/23781#issuecomment-1971464708 and https://github.com/neovim/neovim/issues/23781#issuecomment-1971566323

The work around solution in node-client seems to be to avoid using line buffering. See https://github.com/neovim/neovim/issues/23781#issuecomment-1974745467

I believe it is Windows only.

saidelike commented 9 months ago

closing because the problem was due to https://github.com/neovim/node-client/issues/329