Samuel Wright wrote:
Hi Guys,

Basic question for you here.
I can open a load of files in tabs in vim by calling
 vim -p *.c

for example. How can I achieve the same result from within a running vim?

Thanks
S

   Hi,


you could do

:args *.c
:argdo :tabe

:help args
:help argdo
:help :tabe

Cheers,

   Wolfgang

Reply via email to