If I have the following s-expression:
(if true (this) (that))
And I want:
(if true (that) (this))
How does paredit helps to transpose (this) and (that)?
If I have the following s-expression:
(if true (this) (that))
And I want:
(if true (that) (this))
How does paredit helps to transpose (this) and (that)?
Copyright © 2021 Jogjafile Inc.
I don't know what "paredit" is, but in stock Emacs you can place the point between
(this)and(that)and hit C-M-t which runs the commandtranspose-sexps: