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
Currently dealing with code like this:
'end: { 'do_a: { 'do_b: { match value { 0 => { stuff(); break 'do_a; } 1 => { things(); break 'do_a; } 2 => { foo(); break 'do_b; } 3 => { bar(); break 'do_b; } _ => { zeta(); break 'end; } } } // code break 'end; } // more code } // etc
It would be nice if rust-analyzer could render the labels after each labeled block, like so:
'end: { 'do_a: { 'do_b: { match value { 0 => { stuff(); break 'do_a; } 1 => { things(); break 'do_a; } 2 => { foo(); break 'do_b; } 3 => { bar(); break 'do_b; } _ => { zeta(); break 'end; } } } ['do_b] // code break 'end; } ['do_a] // more code } ['end] // etc
The text was updated successfully, but these errors were encountered:
Probably related to #15580
Sorry, something went wrong.
6f84bdd
Auto merge of rust-lang#17635 - Young-Flash:block_exp, r=lnicola
449517d
feat: add inlay hint support for block expr with lifetime label ![block_expr_with_label](https://github.com/user-attachments/assets/efede15b-d2ba-4aad-9775-a795b6cd473b) close rust-lang/rust-analyzer#17582
2f43049
Young-Flash
Successfully merging a pull request may close this issue.
Currently dealing with code like this:
It would be nice if rust-analyzer could render the labels after each labeled block, like so:
The text was updated successfully, but these errors were encountered: