gvim -O file1.py file2.py file3.py
The above line launches 3 vim windows vertically side by side. Following the -O argument must be a chain 1 or more files of the format
<file a>.<ext> <file b>.<ext> <file c>.<ext>...
I would like to be able to write something like
go f1.py f2.py f3.py .....fN.py
which would be equivalent to something like
gvim -O f1.py f2.py f3.py .....fN.py
I would also like to be able to do
go <some directory>
Which would unpack all the files names in an arbitrary directory, put them into a chain of filenames as shown above. Finally I would like to be able to save this 'go' command somewhere so that even after closing the terminal I can use the 'go' command.