sorawee / fmt

A code formatter for Racket
Other
72 stars 6 forks source link

struct incorrect formatting #24

Open sorawee opened 2 years ago

sorawee commented 2 years ago
(struct s
  (a     ;; a
   b     ;; b
   c            ;; c
   )
  #:transparent
  #:mutable)

is formatted to:

(struct s
        (a ;; a
         b ;; b
         c ;; c
         )
  #:transparent
  #:mutable)

by @JacobVanGeffen