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
I am using Julia 1.6.0-rc2 and the Julia vscode extension v1.1.35. Given this code:
1.6.0-rc2
v1.1.35
Base.@kwdef struct Foo x::Int end foo(f::Foo) = f.x
Placing your cursor on f.x and renaming x to y works as expected:
f.x
x
y
Base.@kwdef struct Foo y::Int end foo(f::Foo) = f.y
However, placing your cursor on x::Int and renaming x to y renames the struct to y instead:
x::Int
Base.@kwdef struct y x::Int end foo(f::y) = f.x
The text was updated successfully, but these errors were encountered:
Yeah, that happens when the cursor is in front of the x::Int -- x|::Int works fine. Will be fixed by #914.
x|::Int
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I am using Julia
1.6.0-rc2
and the Julia vscode extensionv1.1.35
. Given this code:Placing your cursor on
f.x
and renamingx
toy
works as expected:However, placing your cursor on
x::Int
and renamingx
toy
renames the struct toy
instead:The text was updated successfully, but these errors were encountered: