Open yoshi389111 opened 3 months ago
Thanks for the great extension!
I just noticed one issue and wanted to report it.
When formatting scientific notation with Use compact formatter disabled, spaces are added around the sign, which causes compilation errors.
Use compact formatter
const float EPSILON = 1e-9; const float FOO = 1E+10F;
const float EPSILON = 1e - 9; const float FOO = 1E + 10F;
Thanks for the great extension!
I just noticed one issue and wanted to report it.
When formatting scientific notation with
Use compact formatter
disabled, spaces are added around the sign, which causes compilation errors.before
after
environment