Fork me on GitHub
#emacs
<
2016-06-16
>
escherize05:06:33

Is there a way to make smartparens/paredit/??? respect #'s in things like: #{1 2}

escherize05:06:40

()#{1 2}
 ^---cursor here

> Slurp Right

What I want:
(#{1 2})

What I get:
(#){1 2}

hrathod23:06:40

@escherize: try putting this in your init:

(sp-with-modes '(clojure-mode)
  (sp-local-pair "#{" "}"))

hrathod23:06:55

after much editing.. I think that's correct