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
The command you are looking for is args:
For example:
:args /path_to_dir/*
will open all files in the directory