Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

up vote 38 down vote accepted

The command you are looking for is args:

For example:

:args /path_to_dir/*

will open all files in the directory

share|improve this answer
10  
Use ** to match files recursively. E.g. :args /path_to_dir/** – daf Jan 7 '10 at 20:17
Perfect. Gracias. – Ethan Jan 7 '10 at 20:18
To open files without an extension, specify the parent directory e.g. args **/.hg/hgrc works but **/hgrc does not. – 79E09796 Mar 19 at 10:11

Why it doesn't work if I want to open all files ending with a certain extension? I tried

:n ./**.cs

and opens only the files in the currenty directory.

I found the answer.The correct code is :n **/*.cs

For more information :h find

share|improve this answer

Did you try

:n /some/path/*

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

share|improve this answer
Yeah, this works too. – daf Jan 7 '10 at 22:19
What does the :n means? Looking into vim's help only points me to "repeat the last pattern" .. which I understand is the keystroke. Is there a way to get help for command mode only? – Gamer2103 Sep 2 '11 at 1:05
1  
Too easy :h :n .. get help for ":n". Don't I like answering my own questions ;) – Gamer2103 Sep 2 '11 at 1:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.