tags:

views:

458

answers:

1

I'm used to VIM and usually I split screen with and open another file, yank the text into the second one. However I'm dealing with a legacy server which only has vi, how could I either open multiple files with it if it doesn't support split views or copy text from one file to another ( 2 separate vim instances I guess ).

I don't think this server has 'screen' enabled and I have limited access so I can't just go installing things.

+5  A: 

open one file in Vi, yank text, then use

:e another_file

to open another file, and paste.

Yossarian
wow, how silly of me. I got too used to split view that I just forgot about everything else.. soo obvious.. thank you :)
meder