I have a longish list of files opened in vim that looks like this:
/dir1/file1
/dir2/file2
/dir2/file3
.....
How can I open all of them one by one the easiest way possible in the same session of vim either with split or edit?
|
I have a longish list of files opened in vim that looks like this:
How can I open all of them one by one the easiest way possible in the same session of vim either with split or edit? |
|||||||
|
|
I'm going to assume you have the file list open inside Vim, and want to simulate the "gf" command across the whole list... Edit your .vimrc to include this function:
You can then highlight the entire file (or the set of paths you want to open) using visual mode (1G, Shift-V, G) and typing ":call Openall()". Afterwards the command row will show this:
This will run the new Openall() function across all highlighted lines. Press Enter and all the files will be opened in background buffers. You can then access them using the usual buffer commands. :ls will display them as a list. |
||||
|
|
|
You can use quickfix mode, as following
at this point you can use the normal quickfix shortcuts to go through your files, EDIT: oh, if you want to read the list from the current buffer, use |
||||
|
|
|
You can do the following
Where "file" contains your list of files, this will open the files in the same vim session. As usual when opening multiple buffers, you can navigate forward with :bn and backward :bp. |
|||||||||||
|
|
Maybe this could help: |
||||
|
|
|
It's as simple as typing
Once you're in vim, you can switch betwen then with ":n" to go to the next file, ":prev" to go to the previous file. |
|||||
|
|
My searchInRuntime plugin has a :Sp and a :Vsp commands that'll do the trick when called banged. However, the files have to exist. |
||||
|
|
|
Try this with bash:
But I don't know why the first line of the file is ignored... :-O This script works as expected:
http://vimdoc.sourceforge.net/htmldoc/starting.html#-S |
||||
|
|