-
Notifications
You must be signed in to change notification settings - Fork 78
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
Automatically install or update ocaml-lsp-server #1725
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Pizie, this looks quite reasonable and works great.
I understand now the "notifications" you were talking about earlier:

Maybe we could improve the message of the "Installing sandbox packages" to also mention the name of the packages so that we could remove the additional "Installing the latest release of...." notification ?
Co-authored-by: Ulysse <[email protected]>
Co-authored-by: Ulysse <[email protected]>
Co-authored-by: Ulysse <[email protected]>
I have one concern with the current behavior: what install package does is:
edit: Just tested it, and opam is not upgrading the switch by default, so we are all good here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks very good. I have a few suggestions left for the upgrades 🙂
src/extension_instance.ml
Outdated
|
||
let upgrade_ocaml_lsp_server sandbox latest_version = | ||
let open Promise.Syntax in | ||
let+ () = Sandbox.install_packages sandbox [ "ocaml-lsp-server=" ^ latest_version ] in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be much better to modify Sandbox.upgrade_packages to accept a list of packages to upgrade and use that.
That way you wouldn't have to carry the 'latest_version' around and concatenate strings to try to install the latest version. Opam knows how to do that better :-)
You might want to rename Sandbox.upgrade_packages to Sandbox.upgrade_all_packages and then introduce the specialized Sandbox.upgrade_packages to work on a given list of packages.
Co-authored-by: Ulysse <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot Pizie, that looks quite close to being ready :-)
Currently, when
ocaml-lsp-server
is not found in a sandbox, the language server displays an error and fails to start.This PR improves users experience by providing a UI that asks if they will like to install or update
ocaml-lsp-server
or select another sandbox.If the user wants to select another sandbox, a quickpick will be displayed with various switches.
If the user decides to install
ocaml-lsp-server
, it will be installed in the background and they can continue with their activities in the editor.This PR will streamline the process for complete beginners and also reduce the time to terminal for experienced users who often will have to switch to the terminal to install
ocaml-lsp-server
in their sandbox.cc @voodoos