fmt
fmt copied to clipboard
Weird format for structs with long field names / options
Original
(struct S
([aaaaa #:mutable] [bbbbbbbbbbb #:mutable]
[ccccc #:mutable]
[ddddd #:mutable]
[eeeee #:mutable])
#:transparent)
After
(struct S
([aaaaa #:mutable] [bbbbbbbbbbb #:mutable]
[ccccc #:mutable]
[ddddd #:mutable]
[eeeee #:mutable])
#:transparent)
Expected?
Shouldn't fmt
change it to something like:
(struct S
([aaaaa #:mutable]
[bbbbbbbbbbb #:mutable]
[ccccc #:mutable]
[ddddd #:mutable]
[eeeee #:mutable])
#:transparent)
Thanks! I will fix this tomorrow.