-
Notifications
You must be signed in to change notification settings - Fork 1
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
Julia exited with status code 1 #13
Comments
Thanks for the report and debugging help! It seems that the quotes around arguments which contain spaces are only required in the shell / terminal, but not when given as a list to Python's This still doesn't explain why the command to instantiate would not work sometimes, though. Explicit quotes should still be allowed in the arguments, and indeed you still have the quotes within the I could assume that subprocess itself will add additional quotes around the arguments as well, so we end up with end up with two quotes on each side around the I think I will also update the LanguageServer.jl to the latest commit, it looks like they had some interesting updates recently (e.g. switched the document formatting to JuliaFormatter.jl), but for whatever reason they seem to be hesitant to do actual releases/tags on GitHub. If everthing works I will make a new release for LSP-julia later or tomorrow, which will then trigger to run the |
I just pushed a new version tag for this package, and it should be picked up by Package Control in a few hours. This should trigger an update of the language server when a Julia file is opened the next time. |
It has been a fun afternoon! Happy it was also a useful one! I'll attempt a new installation with the update and report back in case something is broken |
I updated the package manually through Package Control command in the command palette (hope that this is still indicative that everything works), and it successfully installed the new committed version of LS without issues. Everything seems to work correctly now. Cheers! |
Hello,
I've tried this package but it doesn't seem to work. I am on Mac Os.
I noticed that the LSP log said that julia could not find the Language Server. And suggested to run
Pkg.Instantiate()
to install it.If I run the subprocess call by hand it then actually instantiates. but the subprocess call returns 0 every time. That is why i had the
ready
file even if it wasn't actually ready. relatedAfter running
import Pkg; Pkg.instantiate()
manually the plugin now runs.The text was updated successfully, but these errors were encountered: