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
(struct point (x y)
#:guard (λ (x y _) (values x y))
#:property prop:custom-print-quotable 'never
#:inspector #false)
Gets reformatted into this:
(struct point (x y)
#:guard (λ (x y _) (values x y))
#:property prop:custom-print-quotable
'never
#:inspector #false)
That seems less than ideal. If the value associated with the property was a long and complicated lambda, I think this would make more sense. But if it's just a short and simple value, keeping the entire property declaration on one line seems more readable.
The text was updated successfully, but these errors were encountered:
This code:
Gets reformatted into this:
That seems less than ideal. If the value associated with the property was a long and complicated lambda, I think this would make more sense. But if it's just a short and simple value, keeping the entire property declaration on one line seems more readable.
The text was updated successfully, but these errors were encountered: