Tomasz Godzik
Tomasz Godzik
[Giter8](http://www.foundweekends.org/giter8/) templates are used in a number of places and provides users with a simple way of starting a project within a selected framework. The templates can be used: -...
**Is your feature request related to a problem? Please describe.** In Scala 2 it's possible to have proper completions on writing any part of the `match` word. It would be...
### Describe the bug Currently, there is a bit of disorder when it comes to ServerCommands and ClientCommands. Initially, I think, client commands were supposed to indicate which commands need...
**Describe the bug** Completing: ```scala "this is an interesting $File@@" ``` does not give us a completion that would automatically add an import. **To Reproduce** Just try it the above...
@olafurpg Is the apiKey and appId the same for all indexes? Or should it be different for Metals?
### Describe the bug This shows up in the CompletionDocSuite: ``` check( "scala1", """ |object A { | List(1).iterator.sliding@@ |} """.stripMargin, """|sliding[B >: Int](size: Int, step: Int = 1): Iterator[Int]#GroupedIterator[B]...
**Is your feature request related to a problem? Please describe.** In Scala 2 it's possible to have additional completions for named parameters that are prefilled with possible values based on...
### Describe the bug This was fixed for Scala 2 in https://github.com/scalameta/metals/pull/3829 using backported code from scalafix. ### Expected behavior Types should be backquoted when needed ### Operating system Linux...
Allowing the use of a lot of different JDK for the metals server causes more jobs to having to be run but also, but also causing issues with the Eclipse...
### Describe the bug Add this test to ImplementationSuite: ```scala check( "self-type", """|/a/src/main/scala/a/Main.scala |trait A { def a@@a: Unit } |trait B{ | this : A => | override def...