After using La Clojure a bit more, I noticed a few minor issues with
the indentation system.
Inside a let form binding, the next line should be indented to one
character past the opening bracket.
eg. should be like:
(let [i "hi"
j "hi"])
where j lines up with i.
current behavior:
(let [i "hi"
j "hi"])
where j lines up with [
Also
Nested forms, IMO, should be indented to be two spaces past the last
opening parenthesis.
eg. should be like:
(let [i (fn [a]
(println a))]
current behavior:
(let [i (fn [a]
(fn [a]
(println a)))]
Those are the only two issues I've noticed so far. Everything else is
working perfectly.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---