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
The difference between files.trimFinalWhitespace and files.trimFinalNewlines, is that files.trimFinalNewlines will trim final newlines and spaces, while files.trimTrailingWhitespace removes trailing spaces on each line.
ie, if _ were spaces:
<a><a>\n
___\n
___\n
\n
would become
<a><a>\n
\n
\n
\n
Since vscode-xml supports files.trimFinalNewlines and files.insertFinalNewline, it would be cool to have files.trimTrailingWhitespace just so that it is consistent with the preferences VS Code has to offer.
The text was updated successfully, but these errors were encountered:
The difference between
files.trimFinalWhitespace
andfiles.trimFinalNewlines
, is thatfiles.trimFinalNewlines
will trim final newlines and spaces, whilefiles.trimTrailingWhitespace
removes trailing spaces on each line.ie, if
_
were spaces:would become
Since vscode-xml supports
files.trimFinalNewlines
andfiles.insertFinalNewline
, it would be cool to havefiles.trimTrailingWhitespace
just so that it is consistent with the preferences VS Code has to offer.The text was updated successfully, but these errors were encountered: