in most GUI text editor I can use ctrl click to open multiple files at once.
I can't do that in gvim.
What the gvim way to do it?
Tnx.
-edit- ...using gui way instead of command line.
|
in most GUI text editor I can use ctrl click to open multiple files at once.
I can't do that in gvim.
-edit- ...using gui way instead of command line. | ||||
feedback
|
|
gVim opens multiple files in buffers.
will open these buffers in their own tabs. I guess you could add this command to your _vimrc to make it happen each time gvim runs. In Windows: gvimext.dll: Support loading files into a VIM tab
| |||||
feedback
|
|
You can open multiple files in gvim. After you've selected the files you want to open, right-click and select "Edit with single Vim". Vim will initially display only the first file, but all the file names are in Vim's argument list. Execute
to open each file in the list one at a time (
to see all the files at once, each in a different Vim window, or
to see each in a different tab. | |||
|
feedback
|