Metals: Document existing editor clients and instructions on how to integrate a new one

Created on 1 Apr 2018  路  19Comments  路  Source: scalameta/metals

It would be good to document an overview of clients that have been used with metals.

A clients.md in the repo should be enough to begin with.

clients documentation

Most helpful comment

PSA. We just merged #229 which is one of the last editor client affecting changes we plan before the v0.1 release. Note that this changes the location of the *.compilerconfig files so metalsSetup (*: prefix is no longer needed) will need to be re-run.

Next change in the line is #230

All 19 comments

I just published lsp-scala with some instructions and an experience report.

Big :+1: to this ticket. Letting people know this can work for any of these editors is going to be good for all of these editors.

I got it working on NeoVim and wrote the instructions I followed in the Readme file: https://github.com/gvolpe/vim-setup

Metals rocks!!! :ok_hand:

Awesome @gvolpe ! You might be interested in the new overview (https://github.com/scalameta/metals/blob/master/docs/overview.md) document that explains each features and what configuration is required to make it work.

I just remembered one undocumented clien requirement: metals expects to be notified by the client when files matching the patterns **/*.compilerconfig and **/*.semanticdb change via workspace/didChangeWatchedFiles (https://microsoft.github.io/language-server-protocol/specification#workspace_didChangeWatchedFiles) This might explain why definition/references didn't work in emacs @rossabaker

@olafurpg I don't know if it makes sense to include it in the scope of this issue, but a "client implementors vademecum" would definitely be useful.

There are non-obvious things that are expected from the client that are currently undocumented, namely:

  • which configuration to send to enable some features
  • watched files notifications
  • available server commands

In the meantime, I can recommend:

  • reading the code of the vscode extension for understanding how to start the server, which server commands are available and which files require watching.

  • reading the manifest of the vscode extension for a reference of the current configuration that clients can send to servers (with the notable exception of serverVersion which is client-specific, but a good idea to implement in general)

/cc @gvolpe @rossabaker

That's a great idea @gabro !

We're in the process of moving the *.compilerconfig files generated by metalsSetup to .metals/buildinfo/ and using .properties file extension. See #229 Once that migration is complete we should be able to write up more permanent documentation for editor client requirements with respect to file watching and configuration.

Using with Sublime

I managed to run the server with the _Sublime 3_ editor using the "officially available" extension.

Details are here

The instructions are specific to my setup and as such will not necessarily work for anyone else. They can be considered as the results of ongoing experimentation with sublime lsp integration.

Thanks for the writeup @ivanopagano !

For scalafix linting, you need a .scalafix.conf file enabling a couple rules. There should appear errors in the buffer with the source "scalafix". Compilation errors from sbt/presentation-compiler have source "scalac".

For code actions, you need to have an "unused import" warning in the file and move your cursor above the range of the warning. A lightbulb should appear then to "Remove unused imports". This is still just a proof-of-concept testing the whole refactoring pipeline. We have a lot more nice scalafix refactorings in the roadmap :)

PSA. We just merged #229 which is one of the last editor client affecting changes we plan before the v0.1 release. Note that this changes the location of the *.compilerconfig files so metalsSetup (*: prefix is no longer needed) will need to be re-run.

Next change in the line is #230

@olafurpg what is not clear to me is if scalafix is enabled implicitly by parts of the metals plugin, or if I need to add the plugin myself to the project...

I tried creating the rules file but I can't make it work it seems...

@olafurpg what is not clear to me is if scalafix is enabled implicitly by parts of the metals plugin, or if I need to add the plugin myself to the project...

scalafix comes with metals. It only requires the semanticdb setup, so you need to enable that and then compile.

Do the vim/sublime/emacs LSP clients support workspace/didChangeWatchedFiles? I am wondering if the server should implement it's own file watching for clients that communicate in initialize that they don't support file watching.

@olafurpg for vim is not yet supported: https://github.com/autozimu/LanguageClient-neovim/issues/347 But I guess this should be a responsibility of the client, not the server.

didChangeWatchedFiles is currently unsupported in both lsp-mode and lsp-scala.

Is the server registering for which files to watch? I can't find anything in metals pertaining to DidChangeWatchedFilesRegistrationOptions. I think that would permit a generic client implementation vs. more metals-aware glue code.

Is the server registering for which files to watch?

No, so far this is a task delegated to clients.

Given the current state of file watching in clients, we may need to work around this, although I'm not excited about it. Technically speaking metals could not even be running on the same machine as the editor.

The server is not using DidChangeWatchedFilesRegistrationOptions to watch those files, it's defined currently in each editor client plugin https://github.com/scalameta/metals/blob/5c0827aaafab5548c4ecc71c707c9f30732bc074/vscode-extension/src/extension.ts#L48-L49

I agree it would be great to delegate this entirely to the client, so using DidChangeWatchedFilesRegistrationOptions seems like the correct long-term solution.

If we want to tackle this, I would definitely prefer client's file watching if available (i.e. didChangeWatchedFiles is included in the WorkspaceClientCapabilities) and fallback to server file watching if not.

Also: file watching is hard.

I opened #256 adding docs for integrating new editor clients with Metals based on our previous discussions. Please consider contributing if you are affected by problems where metals is not compliant with LSP, for example #255 or #216. I am happy to give guidance on how to best approach those.

Please comment on the PR if I missed something!

Somewhat related, I opened #257 to document how to integrate a new build tool with metals.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

iokacha picture iokacha  路  4Comments

banzecrew picture banzecrew  路  3Comments

tpolecat picture tpolecat  路  3Comments

romanowski picture romanowski  路  4Comments

gabro picture gabro  路  3Comments