This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Auto-indentation breaks on braceless scopes #51
Open
Description
This issue can include this earlier one.
It seems that a lack of braces break the auto indentation. For example:
if (true)
i = 1;
else
i = 2;
Turns into:
if (true)
i = 1;
else
i = 2;