Hi All,

Is there an option in DrRacket to change the indentation of for-clauses?

The situation is as follows: There are several parellel for-clauses, so I
like write

  (for ([v vs] [x xs] [y ys])
      body)

The problem arises when I need to break the line before [y ys]. DrRacket
insists on indentation [y ys] to be below [x xs] rather han below [v vs].

That is, I get:

  (for ([v vs] [x xs]
               [y ys])
      body)

but I want

  (for ([v vs] [x xs]
        [y ys])
      body)

-- 
Jens Axel Søgaard

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to