Ayoub Benali
Ayoub Benali
**Is your feature request related to a problem? Please describe.** I would like to extends `LspExecuteCommand` in order to send a `workspace/executeCommand` but `LspExecuteCommand` simply [logs](https://github.com/sublimelsp/LSP/blob/acfd6406ba4680a0e537dc87a72aa5b410a154e7/plugin/execute_command.py#L47) the response. In my...
**Is your feature request related to a problem? Please describe.** Since LSP 3.17 there [DidCreateFiles Notification](https://microsoft.github.io/language-server-protocol/specifications/specification-3-17/#workspace_didCreateFiles) which allows servers to take action. From example Metals would add the correct package...
**Is your feature request related to a problem? Please describe.** Some LSP servers like Metals expects `source.organizeImports` to be invoked manually, after the document is saved and compiled https://github.com/scalameta/metals/pull/2104#discussion_r496601113. So...
Is it possible to make the script work with Unity ?
Consider the following example: ```scala import frameless.functions.aggregate.{collectSet, max, min} import frameless.syntax._ import frameless.TypedDataset case class Foo(bar: Int) val ds = TypedDataset.create(List.empty[Foo]) ds .agg( min(ds('bar)), collectSet(ds('bar)) ) .collect .run ``` It...
I am trying to integrate in https://github.com/scalameta/metals-sublime with this package. It is a helper package for [Metals](https://scalameta.org/metals) and already takes care of the installation. The debug workflow get started via...
It seems that there was an error with the latest release 0.11.0 where most packages are available for 0.11.0 except for `docker-testkit-impl-docker-java` which is missing from maven central.
Picker does already a good job I think  Todo: - [x] Capture `window/showMessageRequest` and show the choices to the user - [x] Render the message - [x] Render the...
This feature is also hidden behind the `display-messages` setting which is used for displaying [Progress](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#progress). I don't think it make sense to create separate setting for this feature as I...
Currently Helix is simply logging a warning here: https://github.com/helix-editor/helix/blob/b6331394a3f341ad21f8fad3e6e0b93becda9ce5/helix-term/src/application.rs#L821 while Scala's language server [Metals](https://scalameta.org/metals/) make use of it. You can see it in the [spec](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#window_showMessage). I saw that there was...