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
Given the following examples, where the ~ represents the cursor location:
~
one() -> Var = 1, [V~ar || Var <- [1, 2, 3]]. two() -> [ Var || Var <- [1, 2, 3] ], [ V~ar || Var <- [4, 5, 6] ].
Go-to-definition jumps to the locations indicated by *:
*
one() -> *Var = 1, [Var || Var <- [1, 2, 3]]. two() -> [ *Var || Var <- [1, 2, 3] ], [ Var || Var <- [4, 5, 6] ].
Which is surprising for the user. Instead, they should jump to:
one() -> Var = 1, [Var || *Var <- [1, 2, 3]]. two() -> [ Var || Var <- [1, 2, 3] ], [ Var || *Var <- [4, 5, 6] ].
The text was updated successfully, but these errors were encountered:
[erlang-ls#1337] Make goto variable definition respect list comprehen…
6b91ffe
…sion scopes
a01bdb9
353e820
[#1337] Make goto variable definition respect list comprehension scop…
45dbe5e
…es (#1403)
ddc8cc2
…sion scopes (erlang-ls#1403)
Successfully merging a pull request may close this issue.
Given the following examples, where the
~
represents the cursor location:Go-to-definition jumps to the locations indicated by
*
:Which is surprising for the user. Instead, they should jump to:
The text was updated successfully, but these errors were encountered: