Is it possible to specify multiple file names on the command line when starting vi?
|
Yep just use :n to go to the next file in the list, and :N to go to the previous. |
|||||
|
|
You can open multiple files by using globbing E.g., If you want to open multiple files at the same time, you can also use the split command. Open the first file as usual, then, then use the command You should now see both files at the same time in a split-screen view. You can do this with more than 2 files (but I'm not sure what the limit is). Now, you can navigate between the windows with Also, you can resize one of the panes by adding or subtracting rows/lines in that view. So if you're in the upper pane and you want it to be 5 lines larger, you'd press I'm sure that there are many other commands you can use, but these are the ones I use. Good luck! |
|||
|
|
|
Also convenient:
That will open up vim with tabs containing each file specified. You can jump between files with
and
If you do
you can also click on the tabs to open or drag them (although hardcore vim users would frown on this :) ) |
|||
|
|