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
Complete writer methods with self receiver when receiver is self (#3550)
* fix: Complete writer methods with self receiver when appropriate
Fixes completion of setter methods to use 'self.method=' syntax when
accessed within instance methods. Previously, completion would suggest
'method=' which assigns to a local variable instead of calling the
instance writer method.
* feat: Add spacing around = in writer method completions
Writer method completions now include proper spacing around the equals
sign to follow Ruby style conventions (e.g., 'self.attr = ' instead
of 'self.attr=').
0 commit comments