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
{{ message }}
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
I guess vim.loop.spawn does not kill the jobs if neovim is closed, unlike jobstart (I am only sure about jobstart). So when neovim exits, it would be great to clean them up.
The text was updated successfully, but these errors were encountered:
Trying to address chiyadev#7 and chiyadev#9.
`vim.loop.spawn` has two limitations:
- processes does not get killed when exiting neovim
- processes does not inherit neovim's environment variables
`jobstart` happens to workaround these two limitations by default.
I guess
vim.loop.spawn
does not kill the jobs if neovim is closed, unlikejobstart
(I am only sure aboutjobstart
). So when neovim exits, it would be great to clean them up.The text was updated successfully, but these errors were encountered: