Is your feature request related to a problem? Please describe.
Let's say you have any interface of sorts like this:
trait Foo:
def a: Int
When you are coding and you create an instance extending this you trigger a completion here:
class Bar extends Fo@@
You'll get a completion for Foo. However, if you then save, you are in a broken state because a must be implemented.
Describe the solution you'd like
I'd love for a completion option that would give me the following as a completion:
class Bar extends Foo:
override def a: Int = ???
Describe alternatives you've considered
What I always currently do is save, go to the error, and then trigger a code action to implement all members. However it'd be great to just have this all down with one step.
Is your feature request related to a problem? Please describe.
Let's say you have any interface of sorts like this:
When you are coding and you create an instance extending this you trigger a completion here:
You'll get a completion for
Foo
. However, if you then save, you are in a broken state becausea
must be implemented.Describe the solution you'd like
I'd love for a completion option that would give me the following as a completion:
Describe alternatives you've considered
What I always currently do is save, go to the error, and then trigger a code action to implement all members. However it'd be great to just have this all down with one step.
Additional context
No response
Search terms
abstract members, completion, snippets