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
How current folding looks like:
match (x) { [+] | case1 => ... [+] | case2 => ... | _ => [+] ... }
The correct form is:
match (x) { [+] | case1 => ... [+] | case2 => ... [+] | _ => ... }
The text was updated successfully, but these errors were encountered:
what you mean with word 'folding', is it spaces formatting problem?
Sorry, something went wrong.
Not space. I mean where you can toggle code outlining. Just write match expression in VS and you'll see.
http://s13.postimage.org/xmwxbhcpx/fold.png
The problem manifests itself when a multiline expression is used.
VladD2
No branches or pull requests
How current folding looks like:
The correct form is:
The text was updated successfully, but these errors were encountered: