You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When splitAttributes is enabled, elements with one attribute get split onto multiple line. For example:
<myelement key="some_key">hellow</myelement>
becomes
<myelement
key="some_key">hellow</myelement>
The splitAttributes comment says it will split multiple attributes onto a new line. I'm not sure if this is the expected behavior but it would nice to have elements with one attribute stay on the same line.
// Split multiple attributes each onto a new line
"xml.format.splitAttributes": true,
The text was updated successfully, but these errors were encountered:
When
splitAttributes
is enabled, elements with one attribute get split onto multiple line. For example:becomes
The
splitAttributes
comment says it will split multiple attributes onto a new line. I'm not sure if this is the expected behavior but it would nice to have elements with one attribute stay on the same line.The text was updated successfully, but these errors were encountered: