-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
COQ EXITED -1, Windows #522
Comments
Same issue here. COQdeps runs fine with no issues, but COQnow just prints "COQ EXITED - 1". Reverting to that commit fixed the issue. I've been having the exact same issue with the exact same symptoms for CHADtree. checkhealth doesn't flag anything. |
Yep, same here. If there's a way to get a log that will help, or something? Can't find any info on that. |
The CHADtree issue was fixed with a rollback too, so at least it's some kind of collective change. |
Same issue here |
same issue |
Same issue, I thought I did something wrong on my end during setup. |
+1 |
I was trying to undestand what is goin wrong, but I have reached a dead end. This is what I have until now.
I have no idea about how the Python event loop works or why coq is crashing (could we even call it crashing?) on that exact line. I was using the following snippet of code to show errors on Neovim and try to "debug" where was the error. from sys import stderr
from os import linesep
print("", "hey", sep=linesep, end="", file=stderr) It always prints "hey" as an error on Neovim until before @ms-jpq maybe you have some insight on how all this work? I'm willing to try and solve this issue for Windows if I could understand it. Sorry for bothering you with Windows stuff. |
I traced as far as pynvim_pp/rpc.py. Near as I can tell, it's trying to wait for an RPC message before a connection is made, and waiting for the connection first seems to only get as far as where |
fixed it. sorry it took so long, busy with life |
No worries, we appreciate your hard work! |
Hello,
Following the recent commit I am now receiving "COQ EXITED -1" when starting coq.nvim on my Windows machine.
I was recently affected by issue #521 (cannot import name 'open_unix_connection' from 'asyncio') and so downgraded coq to the previous version via packer like so:
use({ 'ms-jpq/coq_nvim', commit = '84ec5faf2aaf49819e626f64dd94f4e71cf575bc' })
After I saw that that issue was fixed I upgraded to the most recent version again. When installed I get the prompt to install dependencies, which complete successfully before informing me that I can now use COQnow to start coq. However, whenever I try to start it I receive "COQ EXITED -1" . If I downgrade to the older commit again using the above packer command and install dependencies it starts working again.
Unfortunately I'm not too sure how to go about diagnosing this issue, hence raising the issue.
Thank you for your time and effort on this plugin.
The text was updated successfully, but these errors were encountered: