Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've started using Vim to develop Perl scripts and am starting to find it very powerful.

One thing I like is to be able to open multiple files at once with e.g. vi main.pl maintenance.pl and then hop between them with:

:n
:prev

and see which file are open with

:args

And to add a file, I can say:

:n test.pl

which I expect would then be ADDED to my list of files, but instead it wipes out my current file list and when I type :args I only have test.pl open.

So how can I ADD and REMOVE files to my args list?

share|improve this question
17  
vim can be used on window, OpenVMS and other OS than Unix/Linux. – Luc M Jun 7 '12 at 14:48
5  
Questions about software tools used by programmers are also on-topic here, as is outlined in the FAQ – Wipqozn Jun 19 '12 at 17:15

12 Answers

up vote 227 down vote accepted

Why not use tabs (introduced in Vim 7)? You can switch between tabs with :tabn and :tabp, With :tabe <filepath> you can add a new tab; and with a regular :q or :wq you close a tab. If you map :tabn and :tabp to your F7/F8 keys you can easily switch between files.

If there are not that many files or you don't have Vim 7 you can also split your screen in multiple files: :sp <filepath>. Then you can switch between splitscreens with Ctrl+W and then an arrow key in the direction you want to move (or instead of arrow keys, w for next and W for previous splitscreen)

share|improve this answer
8  
To save and close a tab, you can also use ZZ instead of :wq (just like would normally save and close) – Andreas Grech May 5 '10 at 14:34
5  
I'm using the vim-gnome package in Ubuntu 10.10, and I can switch between tabs using Ctrl+PageUp and Ctrl+PageDown. I didn't have to configure anything; it was default. – Joey Adams Oct 1 '11 at 2:14
36  
Also, in edit mode gt goes to the next tab, and gT goes to the previous tab. – Dean Dec 8 '11 at 22:07
5  
You can jump to any tab by using ngt, where n is the index of the tab (beginning with one). I think there's an option that displays the index of each tab near the file name, but I don't know what it is. If anyone knows, I'd love to hear it. – void-pointer Jan 13 '12 at 2:57
8  
Note also that you can use the -p flag to open multiple files in tabs from the command line. For example, gvim -p main.pl maintenance.pl will open these two files in tabs. – Matthew Strawbridge Nov 25 '12 at 10:06
show 4 more comments

Listing

To see a list of current buffers, I use:

:ls

Opening

To open a new file, I use

:e ../myFile.pl

with enhanced tab completion (put set wildmenu in your .vimrc).

Note: you can also use :find which will search a set of paths for you, but you need to customize those paths first.


Switching

To switch between all open files, I use

:b myfile

with enhanced tab completion (still set wildmenu).

Note: :b# choses the last visited file, so you can use it to switch quickly between two files.


Using windows

Ctrl-W s and Ctrl-W v to split the current window horizontally and vertically.

Ctrl-W w to swhitch between open windows, and Ctrl-W h (or j or k or l) to navigate through open windows.

Ctrl-W c to close the current window, and Ctrl-W o to close all windows except the current one.


With all these I don't need tabs in Vim, and my fingers find my buffers, not my eyes.

Note: if you want all files to go to the same instance of Vim, start Vim with the --remote-silent option.

Cheers!

share|improve this answer
2  
In case you're playing with multiple buffers, I would recommend LustyJuggler. – Arun Mahapatra Nov 6 '10 at 2:50
1  
Thanks for making a very nice quick-reference for the vim commands used most often when working with multiple files. – quanticle Mar 19 '11 at 17:49
2  
I would also add Ctrl-W w will switch between windows that you have open. – quanticle Mar 19 '11 at 17:56
Yes, thanks, added -- plus Ctrl-W h (or j or k or l). – Sébastien RoccaSerra Sep 16 '11 at 9:38
1  
I can't believe that I'm the first person in nearly 6 years to notice this, but at least in vim 7.2, :b does not go the last visited buffer. It leaves you in the same buffer. You want :b# or C-^ for that. Is this a behavior that has changed since 2008? – Dan Becker Jun 5 '12 at 20:56
show 1 more comment
:ls

for list of open buffers

  • :bp previous buffer
  • :bn next buffer
  • :bn (n a number) move to nth buffer
  • :b with tab-key providing auto-completion (awesome !!)

or when u are in normal mode ^ to switch to the last file u were working on

plus, you can save sessions of vim

:mksession! ~/today.ses

saves the current open files buffers and settings to ~/today.ses. u can load that session by using

vim -S ~/today.ses

no hassle of remembering where u left of the yesterday ;)

share|improve this answer

To add to the args list: :argadd

To delete from the args list: :argdelete

In your example you could use :argedit test.pl to add test.pl to the args list and edit the file in one step.

:help args gives much more detail and advanced usage

share|improve this answer
4  
+1 This is the correct answer as far as I'm concerned. – Codemonkey Dec 17 '12 at 19:37

I use buffer commands - :bn (next buffer), :bp (previous buffer) :buffers (list open buffers) :b<n> (open buffer n) :bd (delete buffer). :e <filename> will just open into a new buffer.

share|improve this answer
4  
:ls faster than :buffers – aehlke Aug 10 '10 at 11:02

I think you may be using the wrong command for looking at the list of files that you have open.

Try doing an :ls to see the list of files that you have open and you'll see:

   1 %a   "./checkin.pl"            line 1
  2 #    "./grabakamailogs.pl"     line 1
  3      "./grabwmlogs.pl"         line 0
  etc.

You can then bounce through the files by referring to them by the numbers listed, e.g. :3b

or you can split your screen by entering the number but using sb instead of just b.

As an aside % refers to the file currently visible and # refers to the alternate file.

You can easily toggle between these two files by pressing

<cntl>-shift-6

Edit: like :ls you can use :reg to see the current contents of your registers including the 0-9 registers that contain what you've deleted. This is especially useful if you want to reuse some text that you've previously deleted.

share|improve this answer

vim (but not vi!) has tabs which I find far superior to buffers. You can say :tabe [filename] to open a file in a new tab. Cycling between tabs is done by klicking on the tab or by the key combinatons [n]gt and gT. Graphical vim even has graphical tabs.

share|improve this answer
1  
Thanks, sounds great, but we unfortunately only have VIM 6.1 installed on the server. – Edward Tanguay Sep 10 '08 at 9:16

Things like :e and :badd will only accept ONE argument, therefore the following will fail

:e foo.txt bar.txt
:e /foo/bar/*.txt
:badd /foo/bar/*

If you want to add multiple files from within vim, use arga[dd]

:arga foo.txt bar.txt
:arga /foo/bar/*.txt
:argadd /foo/bar/*
share|improve this answer

I use the same .vimrc file for GVim and the command line vim. I tend to use tabs in GVim and buffers in the command line vim, so I have my .vimrc set up to make working with both of them easier:

" Movement between tabs OR buffers
nnoremap L :call MyNext()<CR>
nnoremap H :call MyPrev()<CR>

" MyNext() and MyPrev(): Movement between tabs OR buffers
function! MyNext()
    if exists( '*tabpagenr' ) && tabpagenr('$') != 1
        " Tab support && tabs open
        normal gt
    else
        " No tab support, or no tabs open
        execute ":bnext"
    endif
endfunction
function! MyPrev()
    if exists( '*tabpagenr' ) && tabpagenr('$') != '1'
        " Tab support && tabs open
        normal gT
    else
        " No tab support, or no tabs open
        execute ":bprev"
    endif
endfunction

This clobbers the existing mappings for H and L, but it makes switching between files extremely fast and easy. Just hit "H" for next and "L" for previous; whether you're using tabs or buffers, you'll get the intended results.

share|improve this answer
I like these mappings. Also try Ctrl-H, Ctrl-L. I setup Firefox and gnome terminal with the same mappings. Very nice to have consistent tab key shortcuts. – Casey Jul 3 '09 at 20:21
1  
use your leader key instead of ctrl to avoid clobbering existing mappings – aehlke Aug 10 '10 at 11:03

When using multiple files in vim, I use these commands mostly (with ~350 files open):

  • :b (jump to a buffer)
  • :bw (buffer wipe, remove a buffer)
  • :e (edit, open a new buffer>
  • pltags - enable jumping to subroutine/method definitions
share|improve this answer

I use multiple buffers

set hidden in my vimrc

The mini-buffer explorer script is nice too to get a nice compact listing of your buffers. Then :b1 or :b2... to go to the appropriate buffer or use the mini-buffer explorer and tab through the buffers.

share|improve this answer

If you are going to use multiple buffers, I think the most important thing is to set hidden so that it will let you switch buffers even if you have unsaved changes in the one you are leaving.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.