Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

incorrect indentation for multiple variable bindings in let* expression #77

Open
hhkbp2 opened this issue Jun 24, 2014 · 0 comments
Open

Comments

@hhkbp2
Copy link
Member

hhkbp2 commented Jun 24, 2014

With 'joxa-mode.el' enabled in Emacs buffer of Joxa code, the indentation for multiple variable bindings in let expression is incorrect. The position of the second and the following var is aligned to the position of first value, rather than the position of first var.

Not it would be

(defn f ()
  (let* (a 1
           b 2)
    a))

And the similar code in 'clojure-mode' would have correct indentation:

(defn f ()
  (let [a 1
        b 2]
    a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant