Monday, May 10, 2010

Re: Open multiple files in vim

Michael,it works. thank you very much.

Regards,
robert


> Try using the :snext command (abbreviated :sn):
>
>  :sn *.c
>
> It's like this combination of commands:
>
>  :split | next *.c
>
> The command ":split {filename}" is like ":edit {filename}", in
> that neither permits a wildcard.  The command ":next {arglist}"
> accepts a wildcard pattern and not just a single filename, and
> ":snext {arglist}" is similar but does a ":split" first.
>
> For more information:
>
>  :help :snext
>  :help :next
>  :help :split_f
>
> Michael Henry
>
>

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

No comments: