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
I have the following file snippet:
<?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd"> <fontconfig> <!-- Default system fonts --> <match target="pattern"> <test qual="any" name="family"> <string>serif</string> </test> <edit name="family" mode="assign" binding="same"> <string>Noto Serif</string> </edit> </match> <match target="pattern"> <test qual="any" name="family"> <string>sans-serif</string> </test> <edit name="family" mode="assign" binding="same"> <string>Noto Sans</string> </edit> </match>
When I enable the formatter, it removes the empty lines between <match> blocks which I keep for segregation and clarity.
<match>
Is there any way I can configure Lemminx to not do this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following file snippet:
When I enable the formatter, it removes the empty lines between
<match>
blocks which I keep for segregation and clarity.Is there any way I can configure Lemminx to not do this?
The text was updated successfully, but these errors were encountered: