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
:command
/some/path
Another way to open files recursively
find . -type f -exec vi {} \;