There is no :open file, it's :open or :open /pattern/, to simulate
legacy Vi's command for going out of ex mode into open mode (in Vim:
into Normal mode): a rarely used command in Vim, except maybe for vi
old-timers. In no case does it open a new file. See :help :open
To open a file in a running Vim, there is:
:e[dit] file
open the new file in the current window
one of
:new file
:sp[lit] file
open the file in a new window in the current tab
one of
:tabnew file
:tabe[dit] file
:tab new file
:tab sp[lit] file
open the file in a new tab
or, in the same order but readonly
:vie[w] file " same window
:sv[iew] file " new window, same tab
:tab sv[iew] file " new tab
Don't type the brackets, of course: they are just there to show how far
the command names may be abbreviated.
Best regards,
Tony.
--
You know you've been spending too much time on the computer when your
friend misdates a check, and you suggest adding a "++" to fix it.