Is there a way to open all the files in a directory from within Vim? So a :command that would say in effect "Open all the files under /some/path into buffers".
Ideally, it would be great to open all the files under a dir recursively.
|
Is there a way to open all the files in a directory from within Vim? So a Ideally, it would be great to open all the files under a dir recursively. |
|||
|
|
|
The command you are looking for is args: For example:
will open all files in the directory |
|||
|
Why it doesn't work if I want to open all files ending with a certain extension? I tried
and opens only the files in the currenty directory. I found the answer.The correct code is For more information |
||||
|
|
|
Did you try
It will open all files in /some/path I don't think it'll open file recursively though. EDIT Maybe using ** will open recursively as daf mentionned |
|||||||||
|