Reputation: 2164
I want to use syntax highlighting for clojure in emacs + slime + clojure.
So I did following step.
But repl is not working. I expect a result of 3. But cursor blinks. repl no response.
; SLIME
user> (+ 1 2)
-K\**_ *slime-repl clojure* All L6 (Clojure Slime[clojure])----------
REPL suspected feature is turned off.
Thanks in advance.
BR ChangMin Jeon
Upvotes: 2
Views: 325
Reputation: 84379
Here's a Gist with my coloured REPL setup for Clojure (prepared a while ago in response to an SO question... I'm really grateful for the prod to the person who asked that one!). Notice how it uses defadvice
to alter the behaviour of SLIME's REPL, rather than changing the major mode in the REPL buffer.
Upvotes: 3