Closed jonspalding closed 9 years ago
Paredit.js indents threading and doto macros like this:
(-> foo bar baz) (doto (JavaClass.) (.setSomeVal "foo") (.setSomeOtherVal "bar"))
When using in Clojure it's more conventional to indent like this:
To support this I've removed /->/ and changed /^do/ to /^do$/ from the specialForms array.
/->/
/^do/
/^do$/
Just noticed your comment on pull request #3.
Paredit.js indents threading and doto macros like this:
When using in Clojure it's more conventional to indent like this:
To support this I've removed
/->/
and changed/^do/
to/^do$/
from the specialForms array.