Hi,
What you're talking about is appending files in a vi session. The lastline mode command 'r' inserts the specified file in the current file starting at the next line from where the cursor is. So if you want the external file to be inserted before the line with 'wxyz' make sure the cursor is on the previous line. If there's no previous line make one and delete it afterwards. If you need to append it to the end of the file go to the last line (or do it like pdreyer shows...)
Regards