T{i<80>kbdo^M^[/}^Ms^Mend^[k
Turn a {}
single line block into a do..end
block.
Example:
expect { something.run }.to raise_error
Run this macro with the cursor inside the braces and it will expand to:
expect do
something.run
end.to raise_error