Re: No Indentation in SLIME

2009-01-15 Thread Kyle Smith
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 > >

Re: No Indentation in SLIME

2009-01-15 Thread Bill Clementson
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

Re: No Indentation in SLIME

2009-01-15 Thread Vincent Foley
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

No Indentation in SLIME

2009-01-15 Thread Kyle Smith
Hello, 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: clojure- indent-function" I've experienced this when setting up Cloju