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
I've noticed lately that Copilot often greps for function call chains like obj.foo().bar() when, in fact, rustfmt might've reformatted it across multiple lines like,
obj
.foo().bar();
Update the copilot-instructions.md to take this into account whenever it's grep'ing for function call chains.