Skip to content
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

Open
wants to merge 31 commits into
base: master
Choose a base branch
from

Conversation

PizieDust
Copy link
Contributor

@PizieDust PizieDust commented Feb 10, 2025

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

@PizieDust PizieDust requested a review from xvw February 10, 2025 11:01
@smorimoto smorimoto added type: feature New feature or request type: improvement labels Feb 10, 2025
Copy link
Collaborator

@voodoos voodoos left a 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:

image

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 ?

@PizieDust PizieDust requested a review from voodoos February 11, 2025 07:58
@PizieDust
Copy link
Contributor Author

Thanks Pizie, this looks quite reasonable and works great.

I understand now the "notifications" you were talking about earlier:

image 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 ?

Thank you. This is done in the latest commit.

@voodoos
Copy link
Collaborator

voodoos commented Feb 11, 2025

I have one concern with the current behavior: what install package does is:

$ update --switch=5.3.0
$ install --switch=5.3.0 -y ocaml-lsp-server

There is nothing fundamentally wrong with that, but I think the second command will also upgrade every upgradable package in the switch. This might be something we want to skip to prevent potentially breaking user projects ? (not sure if that is doable however) 

edit: Just tested it, and opam is not upgrading the switch by default, so we are all good here.

@PizieDust PizieDust changed the title Automatically install ocaml-lsp-server Automatically install or update ocaml-lsp-server Feb 18, 2025
@PizieDust PizieDust requested a review from voodoos February 19, 2025 13:57
Copy link
Collaborator

@voodoos voodoos left a 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 🙂


let upgrade_ocaml_lsp_server sandbox latest_version =
let open Promise.Syntax in
let+ () = Sandbox.install_packages sandbox [ "ocaml-lsp-server=" ^ latest_version ] in
Copy link
Collaborator

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.

Copy link
Collaborator

@voodoos voodoos left a 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 :-)

@PizieDust PizieDust requested a review from voodoos March 27, 2025 13:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants