- Initial release.
- Added
trailing-whitespace-fixer.allowWhitespaceOnlyLines
setting to allow lines that are only whitespace. - Fix highlighting suppression on last line of file.
- Fixed multi-cursor support.
- Added support for
\r\n
newlines. - Fixes redo stack being broken after first redo that triggers an edit.
- Fixed issue where Move Line Up command on the line 2 below resulted in the space after "c" being removed.
b
a
c #
- Fixed issue where Move Line Up command on the line 2 below resulted in the space between "a" and "c" being removed.
a c
ab
- Updated Move Line Down command on the line 2 to remove whitespace on the moved up line.
[
88,
99
]
- Fixed Move Line Up command on the line 2 that would cause
a
to be removed.
a 1
b
- Fix multi-cursor support for hitting Enter where the cursor is displays below.
1| 2| 3 4
| 1 | 2
- Added check that only whitespace is deleted.
- Fix closing PHPDoc comment when hitting Enter where the cursor is displays below.
/**| */
- Fix removed whitespace after file changes on disk (e.g. via git operations).
- Don't make changes if not focused on the window. The main intent is to not make changes when file is changed on disk (e.g. via git branch changes or stashing).
- Allow as web extension.
- Allow setting
trailingWhitespaceFixer.trailingWhitespaceColor
inworkbench.colorCustomizations
to change the background color of trailing whitespace.