When launching vim from the command line, I can do for example vim *.txt to open all text files in a directory at once.
vim *.txt
For some reason, trying the same fro
It's done in two operations.
Open all *.js files in as many vertical splits:
*.js
:argadd *.js :argdo vs
in horizontal splits:
:argdo sp
in tabs:
:argdo tabe