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
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