We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When fields are set equal to other fields with same name, renaming causes wrong renaming.
To Reproduce Steps to reproduce the behavior:
local a = { } local b = { } a.color = { 1, 1, 1 } b.color = a.color
Rename b.color to b.colora and see in the same line a.color change to a.colora
b.color
b.colora
a.color
a.colora
Expected behavior Only b.color change to b.colora
Screenshots Note: ---@class ... doesn't matter.
---@class ...
Environment:
Additional context I turned of all intellisense features in settings.json and the error remains.
The text was updated successfully, but these errors were encountered:
c586a11
No branches or pull requests
Describe the bug
When fields are set equal to other fields with same name, renaming causes wrong renaming.
To Reproduce
Steps to reproduce the behavior:
Rename
b.color
tob.colora
and see in the same linea.color
change toa.colora
Expected behavior
Only
b.color
change tob.colora
Screenshots
Note:
---@class ...
doesn't matter.Environment:
Additional context
I turned of all intellisense features in settings.json and the error remains.
The text was updated successfully, but these errors were encountered: