Say I have the following lines:
thing();
getStuff();
I want to take getStuff() using yy, go forward to thing(), placing the cursor on ( and hit p, but since I yanked the whole line, p will paste getStuff() right back where it was.
I know you can ^D to get the line of getStuff() then p will do what I want. However, I find this to be much more tedious than yy.
Is there any way to yy but paste the line inline?
yy, then in insert mode:<C-r>*, but it would be awesome if this stripped out tabs and newlines.. – tester Oct 14 '11 at 22:11