We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello! I have a mystery. With :indents ^:replace {#"^\w" [[:inner 0]]} this is aligned as I want:
(defn X ([args] (doit)))
but if I put any line (normally I would have there a docstring) after the X, it changes and the body of the fn is indented by 1 space too many:
(defn X ;; comment ([args] (doit)))
The text was updated successfully, but these errors were encountered:
I haven't tried it with the Leiningen plugin, but I can't reproduce it with tests:
(is (reformats-to? ["(defn X" "([args]" "(doit)))"] ["(defn X" " ([args]" " (doit)))"] {:indents {#"^\w" [[:inner 0]]}})) (is (reformats-to? ["(defn X" " ;; comment" "([args]" "(doit)))"] ["(defn X" " ;; comment" " ([args]" " (doit)))"] {:indents {#"^\w" [[:inner 0]]}}))
Both of those pass. Strange.
@holyjak: is this still an issue for you?
Sorry, something went wrong.
No branches or pull requests
Hello! I have a mystery. With :indents ^:replace {#"^\w" [[:inner 0]]} this is aligned as I want:
but if I put any line (normally I would have there a docstring) after the X, it changes and the body of the fn is indented by 1 space too many:
The text was updated successfully, but these errors were encountered: