In Vim I've learned that if I want to move lines x through y after line z I can issue this command where 'm' stands for move:
:x,y m z Is it possible to simply copy (or yank) a range of lines and then paste them after a third line? I've tried substituting 'y' (yank) for 'm' but that doesn't seem to work. It just yanks the lines.