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
Marking the whole script (or just line 3) and hitting tab should give the following auto-formatted indents:
{ var x = 1 }
Marking the whole script and hitting tab yields one extra indent before the last curly bracket on line 3:
Same with only var:
{ var }
Note this issue does not persist at the following variations:
With semicolon:
{ var; }
Without var:
{ x = 1 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Marking the whole script (or just line 3) and hitting tab should give the following auto-formatted indents:
Actual Behavior
Marking the whole script and hitting tab yields one extra indent before the last curly bracket on line 3:
Same with only var:
Note this issue does not persist at the following variations:
With semicolon:
Without var:
Specifications
The text was updated successfully, but these errors were encountered: