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
The code (require racket/list racket/hash) gets formatted into:
(require racket/list
racket/hash)
However, if the modules are wrapped in for-syntax, they get formatted into:
(require (for-syntax racket/list racket/hash))
I think the phase-shifting require forms like for-syntax, for-template, etc. shouldn't prevent separate imported modules from being placed onto separate lines. The above ought to be this instead:
(require (for-syntax racket/list
racket/hash))
The text was updated successfully, but these errors were encountered:
The code
(require racket/list racket/hash)
gets formatted into:However, if the modules are wrapped in
for-syntax
, they get formatted into:I think the phase-shifting
require
forms likefor-syntax
,for-template
, etc. shouldn't prevent separate imported modules from being placed onto separate lines. The above ought to be this instead:The text was updated successfully, but these errors were encountered: