Can anyone help me with this: I\'m trying to figure out how to copy and paste text between 2 different instances of vim on different terminals (using iterm2 or mac terminal). I
If you want to copy an entire file into your target file.
Open your target file in vim.
Put your cursor where you want it and type the following:
:r /path_to_file/file.ext
This will copy an entire file to where your cursor is...