Hi
I want to express my gratitude for the excellent mode. I have discovered a tiny annoyance though. It is regarding indentation of the loop construct in slime-mode.
In Emacs lisp mode my example is indented like this:
(loop for i from 1 to 10 do (print i))
I like the way it aligns `for' and `do' (and other keywords), but when I use slime, it is indented like this:
(loop for i from 1 to 10 do (print i))
Which bothers me greatly for some reason.
Is there any way I can preserve the Emacs lisp mode's way of indenting the loop construct, while running M-x slime?
Thomas