Is it possible to load multiple files at the same using :edit? I tried:
:e ~/dev/myproject/*.c
and it did not work.
(Note this is different than "How to open multiple files matching a wildcard expression?" because in that question he is not using :edit)
:editdoesn't take more than one argument, so use one of the commands that does. – jamessan Jul 14 '17 at 01:50:editdoesn't not accept.:editonly accepts a single filename, so use a command which supports multiple filenames. – jamessan Jul 14 '17 at 03:23:e *.txt, however Vim will complain, if this expands to more than one file. So you can e.g. use:argadd *.txt|:nextor similar. – Christian Brabandt Jul 14 '17 at 05:54