sorawee / fmt

A code formatter for Racket
Other
74 stars 7 forks source link

fix sexp-comment and wrapper when the inside node has top comment #2

Closed sorawee closed 3 years ago

sorawee commented 3 years ago
'(; abc 
  def)

is formatted to

'; abc
 (def)

Would be nice to make it:

; abc
'(def)