Reputation: 29
I'm trying to copy the text inside curly braces and I need to copy the text plus the curly braces into register 'b'. There is a Vim command that could do this?
Upvotes: 2
Views: 717
Reputation: 27271
Try it visually first:
va{"by
But you can go faster by doing it non-visually:
"bya{
Upvotes: 6