[plt-scheme] question about dr. scheme indentation
Hi everyone
I am new to Dr Scheme and would like to change how it indents.
Currently it is indenting my code like this:
(define (myfunction myparam)
(let*
[
(myvar 10)
]
(+ myvar myparam)
)
)
I would prefer closing parenthesis to be aligned with opening parenthesis, and for everything to be indented with tabs, more like this:
(define (myfunction myparam)
(let*
[
(myvar 10)
]
(+ myvar myparam)
)
)
Is there a way to specify HOW it auto indents? How can I configure dr scheme to do this?
Thanks
---------------------------------
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20060407/c6f5a295/attachment.html>