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:
(deftest example-tests (testing "something" (is (= 1 1)) (-> foo bar baz) (is (= 2 2))))
If I put my cursor on the ( to the left of the -> and do cruw (thread-unwind), I get this, which is good:
(
->
cruw
(deftest example-tests (testing "something" (is (= 1 1)) (-> (bar foo) baz) (is (= 2 2))))
But when I unwind the last level of threading by running cruw again, I get this, which is not indented properly:
(deftest example-tests (testing "something" (is (= 1 1)) (baz (bar foo)) (is (= 2 2))))
I get the same result if I start with the (-> foo bar baz) version at the top of this post and I do crua (unwind-all):
(-> foo bar baz)
crua
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a form like this:
If I put my cursor on the
(
to the left of the->
and docruw
(thread-unwind), I get this, which is good:But when I unwind the last level of threading by running
cruw
again, I get this, which is not indented properly:I get the same result if I start with the
(-> foo bar baz)
version at the top of this post and I docrua
(unwind-all):The text was updated successfully, but these errors were encountered: