Thanks Bill. That's just what I needed.
On Jan 15, 7:58 am, Bill Clementson wrote:
> Hi Kyle,
>
>
>
> On Wed, Jan 14, 2009 at 11:27 PM, Kyle Smith wrote:
> > I'm new to Clojure, SLIME, and emacs in general but I've noticed my
> > SLIME REPL does not indent properly when I use or C-j. This
> >
Hi Kyle,
On Wed, Jan 14, 2009 at 11:27 PM, Kyle Smith wrote:
> I'm new to Clojure, SLIME, and emacs in general but I've noticed my
> SLIME REPL does not indent properly when I use or C-j. This
> is the error message I see:
>
> "calculate-lisp-indent: Symbol's function definition is void: clojur
By default Return is bound to the command newline which does not
indent. If you press the Tab key, you'll be placed at the correct
indentation spot. To make this automatic, you need to rebind Return
to newline-and-indent:
(global-set-key (kbd "C-m") 'newline-and-indent)
Hope this helps.
Vince