When using paredit how do you wrap braces around text? I've used paredit several times however I get frustrated because it stops me from doing what I want.
Example:
(foo
(bar 1 2 3)
baz 1 2 3)
Opps, baz 1 2 3 should be wrapped like so:
(foo
(bar 1 2 3)
(baz 1 2 3))
But, no... :
(foo
(bar 1 2 3)
() baz 1 2 3)