JetBrains / la-clojure

Clojure plugin for IntelliJ IDEA
Apache License 2.0
220 stars 49 forks source link

Pull request "more ideomatic indentation" #39

Closed chrisbetz closed 11 years ago

chrisbetz commented 11 years ago

Hello!

Thanks for providing La Clojure to us as the clojure community! Great work.

I just changed a "not-so-idomatic" way of code intendation. So, instead of formatting like this

(defn testfn [a]
  (let [b (fn [x]
    (+ a x))]
...
)

this would be formatted like this:

(defn testfn [a]
  (let [b (fn [x]
            (+ a x))]
...
)

Hope you agree with me on this, and pull this minor improvement. I updated both the code an the test, so it should be pretty straightforward. However, if there's any issue with this request, just let me know.

Greetings from Hamburg, Germany

Chris

Dr. Christian Betz HEROLABS