When I try to type in a Clojure Set literal in the nREPL something is adding a space between the '#' and the '{' such that nREPL stacktraces when hit return at the end of the line.
; CIDER 0.8.2 (Java 1.7.0_71, Clojure 1.6.0, nREPL 0.2.6)
user> ;; If I type '#{' to try and start a Set literal something jacks in a space
user> ;; between the # and the { such that my form becomes invalid.
user> ;; How do I stop this bad behavior?
user> # {"one" "two"}
RuntimeException Reader tag must be a symbol clojure.lang.LispReader$CtorReader.invoke (LispReader.java:1162)
user> ;; What I wanted was...
user> #{"one" "two"}
#{"two" "one"}
user>
What's causing that and how do I stop it?
I don't know if my .emacs.d/init.el matters, but its pretty lean regarding cider configuration...
; 2015-03-30 more Clojure support
(add-hook 'clojure-mode-hook 'paredit-mode)
(add-hook 'cider-repl-mode-hook #'paredit-mode)
(add-hook 'cider-repl-mode-hook #'rainbow-delimiters-mode)
I'm new to this Clojure thing, any help is greatly appreciated.