-
Notifications
You must be signed in to change notification settings - Fork 80
Conversation
Fixes #10, tested on OSX only.
I'm not sure if it's enough - in Ionide we do something like that to kill processes on Windows https://github.com/ionide/ionide-vscode-fake/blob/master/src/fake.fs#L51-L55 |
Thanks! A combination of the two worked. |
Probably reactor should also be killed when code exits? |
I think child processes are killed when node applications exists. |
Reactor process still lives on Windows after I quit code. I'll check OSX tomorrow. |
Looks like it's problem in VS Code indeed, microsoft/vscode-go#26 |
We can just call a silent version |
It was discussed in issue I've linked, looks like there are some problems with that. |
We could probably implement some hack to do it, but I'd prefer waiting for vscode support for deactivation. I'd say this PR is ready to merge. |
👍 |
Fixes #10, tested on OSX only.