You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Picking the completion will expand to (&mut self, x, y) when the expected behaviour is (x, y)
One more interesting thing is that requesting completions with Rectangle:: will produce no results as module functions with the self parameter will not receive completions.
I will take care of the first issue but I don't understand the rationale in the second one, is there supposed to be something else there or was it just not implemented yet?
The text was updated successfully, but these errors were encountered:
#3432 introduced snippet support for functions parameters, however - it includes the self parameter when it shouldn't, e.g.
Picking the completion will expand to
(&mut self, x, y)
when the expected behaviour is(x, y)
One more interesting thing is that requesting completions with
Rectangle::
will produce no results as module functions with the self parameter will not receive completions.I will take care of the first issue but I don't understand the rationale in the second one, is there supposed to be something else there or was it just not implemented yet?
The text was updated successfully, but these errors were encountered: