Open
Description
(defn mirror-tree
[tree]
(when tree
(let [[root left right] tree]
[root (mirror-tree left) |(mirror-tree right)])))
When I put my cursor at | in the above code, in the bottom vector before the last sexp, and I run the command to drag the sexp backwards, it moves it to the front of the vector, rather than swapping it with the previous, as I expect.
Same thing happens if I put that code in a file by itself.