views:

87

answers:

1

I really like vim's fuzzyfinder plugin, but I often find myself wanting to open more than one file at a time (eg. every file that ends in ".py" within a directory). I can't see a way to do this in the docs, but is anyone aware of a way to do this?

Alternately, are there any other "fuzzy" file opening plugins with a comparable feature set that have this ability?

+3  A: 

You don't need a plug-in to do this.

:args *.py

See :help :args_f for more information.

Johnsyweb
Thanks, that does help, but ideally I'd like to combine it with "fuzzy" filename matching. For example, to open code/my_project/{file1,file2,file3}.py, I'd like to be able to type "c<Tab>pr<Tab>*.py" and have all 3 files open. If I can't find a way to do that, args does look like a nice compromise.
funksta