Is it possible to provide some parameter when recording a macro in vim via prompt or some other ways?
Edit: I have such code:
foo
bar
And I would like to surround each with ruby block:
expect do
foo
end.to raise_error(CustomClass)
expect do
foo
end.to raise_error(OtherCustomClass)
So, it is easy to create a macro that will result with: expect do foo end.to raise_error()
expect do
foo
end.to raise_error()
But it will be nice to have prompt that will be used to set raise_error method parameter. In each use of macro this parameter will be different.
ciw<some-text>^[followed by.? – Johnsyweb Nov 14 '11 at 11:11