Fuzzyfinder: any way to open multiple files at once?

I really like the vim fuzzyfinder plugin, but I often find that I want to open more than one file at a time (for example, every file that ends with ".py" inside the directory). I don't see a way to do this in the docs, but does anyone know how to do this?

Alternatively, are there any other “fuzzy” plugins for opening files with a comparable set of functions that have this ability?

+5
source share
3 answers

ctrlp.vim is an alternative fuzzy file search that fully supports marking and opening of these marked files.

CTRL-Z / CTRL-O, .

+3

.

:args *.py

. :help :args_f.

+3

See explanation here → http://www.infoanda.com/resources/find.htm

vim `find include src -name \*.[ch] -mtime -3 -print | xargs`
0
source

All Articles