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
Given a form like this:
(is (= (pitch/hz->midi 7.95) 0))
The thread commands do not correctly indent the resulting forms:
;; crtf (thread-first-all) (-> 7.95 pitch/hz->midi (= 0) is) ;; crtl (thread-last-all) (->> 0 (= (pitch/hz->midi 7.95)) is) ;; crtt (thread-last) (->> (= (pitch/hz->midi 7.95) 0) is) ;; crth (thread) (-> (= (pitch/hz->midi 7.95) 0) is)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a form like this:
The thread commands do not correctly indent the resulting forms:
The text was updated successfully, but these errors were encountered: