We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uw
To start out enter:
(map square (filter even? [1 2 3 4 5]))
Put your cursor in front of the s-exp, and call cljr-thread-last-all:
cljr-thread-last-all
(->> [1 2 3 4 5] (filter even?) (map square))
If we think we went to far we can place the cursor somewhere inside the thread form and hit cljr-unwind-thread and we'll get:
cljr-unwind-thread
(->> (filter even? [1 2 3 4 5]) (map square))
There's also clj-unwind-all if we wanted to undo all the threading, instead of just one level.