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
Brace completion changes outer list to array in error.
Take an example like:
let x = [ [| (* start a new array before this element *) box 1; box"some key"|] ] // outer list is changed to array
Resulting in broken code after brace completion.
let x = [ [| [|box 1; box"some key"|] |]
Another way to trigger it is:
let x = [(*start a new array directly before this array open, leaving no whitespace*)[||]]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Brace completion changes outer list to array in error.
Take an example like:
Resulting in broken code after brace completion.
Another way to trigger it is:
The text was updated successfully, but these errors were encountered: