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
In the example below, formatting removes a useful space character: the output is less readable & introduces an asymmetry.
The code looked like this before beautification:
bar::before { content: "(" counter(foo) ")"; }
The code should have looked exactly the same after beautification.
After beautification, the space between "(" and counter(foo) is removed (but the space between counter(foo) and ")" isn't, causing an asymmetry):
"("
counter(foo)
bar::before { content: "("counter(foo) ")"; }
Format the input.
OS: Windows
VS Code 1.66.1 with default settings. Not sure how to extract the settings VS Code uses under the hood. Originally reported as microsoft/vscode#147060
The text was updated successfully, but these errors were encountered:
Related to the following, should be fixed in the upcoming release. Maybe you can try reproducing on main branch
main
Issues:
PRs:
Sorry, something went wrong.
Released 1.14.3 today. This is fixed in that version. Thanks @mhnaeem !
No branches or pull requests
Description
In the example below, formatting removes a useful space character: the output is less readable & introduces an asymmetry.
Input
The code looked like this before beautification:
Expected Output
The code should have looked exactly the same after beautification.
Actual Output
After beautification, the space between
"("
andcounter(foo)
is removed (but the space between counter(foo) and ")" isn't, causing an asymmetry):Steps to Reproduce
Format the input.
Environment
OS: Windows
Settings
VS Code 1.66.1 with default settings. Not sure how to extract the settings VS Code uses under the hood. Originally reported as microsoft/vscode#147060
The text was updated successfully, but these errors were encountered: