gregsh / Clojure-Kit

Clojure/ClojureScript plugin for IntelliJ-based IDEs
Other
248 stars 21 forks source link

Indentation for letfn is not correct #11

Open DogLooksGood opened 7 years ago

DogLooksGood commented 7 years ago

that should be

(letfn [(foo [a]
          (xxx))])

currently, it is

(letfn [(foo [a]
             (xxx))])