- Fixed small issue.
- Fixed bug that could appear on the ending brackets one tabbed.
- Improved formatting jumping speed per formatting.
- Added support for switch cases without break. #4 (read commit for more detail)
- Improved spacing formation smoothness for bracketless if, else, for...
- Fixed bug when variable is set to negativ:
myInt = - 1;
->myInt = -1;
. - Fixed issue with the format not inserting spaces:
i +=1;
->i += 1;
. - Performance improvements.
- Fixed error on formatting negative numbers. #5
- Update changelog format.
- Added support for formatting switch statements. #4
- The formatter honor the current indentation mode of the current file. #2
- Added support for different tab spaces.
- Fixed bug that caused the formation to stop working in cases like
( (
. - Now supports changes in settings without a restart.
- Added feature that makes formatting to ignore strings. #1
- Fixed bug that caused multiline comments to format on the first row.
- Fixed problem with the
logChanges
setting. logChanges
setting is now set tofalse
as default.- Added formatting as shown:
}else if ()
->} else if ()
.
- Fixed occurrences when formatting didn't remove all extra tabs.
- Fixed formatting error on
else if
.
- Fixed formatting error when converting from spaces to tabs.
- Fixed formatting conflict when a class's
{
is on new row; - Fixed problem of random spaces occurring during horizontal formatting.
- Added setting to disable logs.
- Fixed formatting error on lists.
- Added project to the Extension Marketplace.
- Added proper support for bracketless
for
,else
, andif
.
- Added formatting for selected
(
)
.
- Fixed issue that occurred when a variable had
for
,else
, orif
in the name.
- Fixed incorrect formatting of horizontal spacing on
}
.
- Added formatting for
for
andelse
.
- Fixed formatting issue with improper horizontal spacing in special cases.
- Fixed formatting conflict when
(
was after an operator.
- Fixed formatting issue that cased the operators
+
and-
to not get spaces.
- Fixed formatting issue when
{
was on a new line.
- Added config support.
- Fixed issues regarding
(
.
- Added
[
and]
formatting.
- Fixed incorrect formatting on this particular case: if
(! boolVar)
->if (!boolVar)
.
- Fixed a critical bug that could cause code deletion.
- Handles spaces between operators.
- Handles spaces between brackets.
- Handles horizontal spacing.