-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
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
x/tools/gopls: return statement steals highlighting #36057
Comments
Thank you for filing a gopls issue! Please take a look at the Troubleshooting guide, and make sure that you have provided all of the relevant information here. |
Change https://golang.org/cl/210558 mentions this issue: |
Thanks for looking at this. Out of curiosity why do we highlight the entire return statement instead of just the "return" keyword? If the return statement is long (esp if multiline), it's really a lot of highlighting. Similarly we highlight the entire composite literal (body) instead of just the composite literal's type name when highlighting on the type name (e.g. |
We looked at what Goland does when it comes to highlighting inside of a return statement and if you highlight any field in the return list, then it will highlight the entire field and the corresponding param in the return list within the function declaration. For instance,
When you highlight false, it will also highlight bool and if you highlight bool it will highlight all the first fields for each return statement. In the case that you used as an example, if you just highlight the foo in the type declaration, it will only highlight the composite literal's type name, not the whole body. Highlighting inside the return statement is the only case where the whole body would get highlighted. |
Thanks for the explanation. I didn't realize it was connected to the function results like that. |
It looks like the "return" highlighting is taking precedence over things within the return statement.
If you trigger highlighting at the "bar" in the composite literal, I expect it to highlight just the "bar" field, but it highlights the entire return statement.
/cc @ridersofrohan
The text was updated successfully, but these errors were encountered: