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
Is your feature request related to a problem? Please describe.
Current document formatting only modifies preceding and trailing whitespace on lines. It would be great if it could handle more advanced formatting, like adjusting whitespace within a line (e.g. a = 4+ 5 formatted to a = 4 + 5).
The text was updated successfully, but these errors were encountered:
Related to this, is there a reason why the formatter adds spaces in empty lines? Trailing spaces are usually discouraged (at least in my experience), and raise warnings with, e.g., git diff --check.
In this example I've replaced the trailing spaces added by the formatter with the · sign, to make them visible.
Is your feature request related to a problem? Please describe.
Current document formatting only modifies preceding and trailing whitespace on lines. It would be great if it could handle more advanced formatting, like adjusting whitespace within a line (e.g.
a = 4+ 5
formatted toa = 4 + 5
).The text was updated successfully, but these errors were encountered: