589

I open several files in Vim by, for example, running

vim a/*.php

which opens 23 files.

I then make my edit and run the following twice

:q

which closes all my buffers.

How can you close only one buffer in Vim?

3
  • 12
    Note that you can open the files in separate Vim windows using vim -o a/*.php (or -O to use vertical windows) and avoid the buffer navigation - this is a great method for only a few files, but with 23 files they'll only have a few lines/columns each.
    – Cascabel
    Commented Aug 13, 2009 at 2:06
  • 1
    @Jefromi: Thank you for pointing that out! I have never use the option -o before. Commented Aug 13, 2009 at 2:32
  • 1
    On the subject of window splits. If you are already in Vim and want to open another file in a split :esp for horizontal :evsp for vertical.
    – Lanzafame
    Commented Dec 8, 2014 at 4:07

10 Answers 10

786

More from manuals:

:bd

Unload buffer [N] (default: current buffer) and delete it from the buffer list. If the buffer was changed, this fails, unless when [!] is specified, in which case changes are lost. The file remains unaffected.

If you know what you’re doing, you can also use :bw

:bw

Like |:bdelete|, but really delete the buffer.

A word of caution: “the w in bw does not stand for write but for wipeout!”

13
  • 6
    Also the possibility of doing ':M,Nbd' to close buffer numbers M to N. Or ':bd N1 N2...' where N# is a buffer number
    – snowbound
    Commented Apr 8, 2014 at 12:48
  • 125
    The manual says to only use :bw if "you know what you're doing", which I don't, so I guess I'll use :bd.
    – jberryman
    Commented Jun 23, 2014 at 19:50
  • 6
    w is short for write command according to Vim manual, there is furthermore no mention of any "wipeout". The description of the command (help write) starts with "Write the whole buffer to the current file." Commented Oct 13, 2016 at 10:44
  • 7
    @amn by using :help bw you will see bw is stand for wipe.
    – noark
    Commented Jun 28, 2017 at 12:59
  • 8
    @amn I got confused too, but he meant the w in the bw command means wipeout he is not talking about the w command. He put this warning there so people did not think the bw command meant buffer write (which it does not it means buffer wipeout.)
    – John
    Commented Aug 24, 2018 at 5:33
391

If this isn't made obvious by the the previous answers:

:bd will close the current buffer. If you don't want to grab the buffer list.

4
  • 4
    Before finding :bd it never made any sense to me that people had no problems doing a :ls -> scan for doc number -> unload buffer by number. Do people actually find this effective?
    – Svend
    Commented Aug 13, 2009 at 16:08
  • 3
    @svend for a range of buffers sure, but for a lone one a :bd is probably more effective.
    – Pharaun
    Commented Aug 12, 2011 at 18:08
  • 1
    @Svend I keep 'open' a split with a list of the buffers Commented Jan 2, 2013 at 15:30
  • 12
    :bd only closes the buffer whereas (whatever that means) whereas :bw will also clear all the variables and REALLY eliminates it from the ls buffer.
    – RedX
    Commented Mar 13, 2013 at 18:22
123

Check your buffer id using :buffers

you will see list of buffers there like

1  a.php
2  b.php
3  c.php

if you want to remove b.php from buffer

:2bw

if you want to remove/close all from buffers

:1,3bw
2
  • 7
    You can also wipe all buffers with :%bw
    – cdleonard
    Commented Oct 12, 2011 at 23:03
  • 8
    short cut to check buffer id: 2 CTRL-G
    – snowbound
    Commented Apr 8, 2014 at 12:49
56

Rather than browse the ouput of the :ls command and delete (unload, wipe..) a buffer by specifying its number, I find that using file names is often more effective.

For instance, after I opened a couple of .txt file to refresh my memories of some fine point.. copy and paste a few lines of text to use as a template of sorts.. etc. I would type the following:

:bd txt <Tab>

Note that the matching string does not have to be at the start of the file name.

The above displays the list of file names that match 'txt' at the bottom of the screen and keeps the :bd command I initially typed untouched, ready to be completed.

Here's an example:

doc1.txt doc2.txt
:bd txt 

I could backspace over the 'txt' bit and type in the file name I wish to delete, but where this becomes really convenient is that I don't have to: if I hit the Tab key a second time, Vim automatically completes my command with the first match:

:bd doc1.txt

If I want to get rid of this particular buffer I just need to hit Enter.

And if the buffer I want to delete happens to be the second (third.. etc.) match, I only need to keep hitting the Tab key to make my :bd command cycle through the list of matches.

Naturally, this method can also be used to switch to a given buffer via such commands as :b.. :sb.. etc.

This approach is particularly useful when the 'hidden' Vim option is set, because the buffer list can quickly become quite large, covering several screens, and making it difficult to spot the particular buffer I am looking for.

To make the most of this feature, it's probably best to read the following Vim help file and tweak the behavior of Tab command-line completion accordingly so that it best suits your workflow:

:help wildmode

The behavior I described above results from the following setting, which I chose for consistency's sake in order to emulate bash completion:

:set wildmode=list:longest,full

As opposed to using buffer numbers, the merit of this approach is that I usually remember at least part of a given file name letting me target the buffer directly rather than having to first look up its number via the :ls command.

54

Use:

  • :ls - to list buffers
  • :bd#n - to close buffer where #n is the buffer number (use ls to get it)

Examples:

  • to delete buffer 2:

    :bd2
    
19

You can map next and previous to function keys too, making cycling through buffers a breeze

map <F2> :bprevious<CR>
map <F3> :bnext<CR>

from my vimrc

9

Close buffer without closing the window

If you want to close a buffer without destroying your window layout (current layout based on splits), you can use a Plugin like bbye. Based on this, you can just use

:Bdelete (instead of :bdelete)
:Bwipeout (instead of :bwipeout)

Or just create a mapping in your .vimrc for easier access like

:nnoremap <Leader>q :Bdelete<CR>

Advantage over vim's :bdelete and :bwipeout

From the plugin's documentation:

  • Close and remove the buffer.
  • Show another file in that window.
  • Show an empty file if you've got no other files open.
  • Do not leave useless [no file] buffers if you decide to edit another file in that window.
  • Work even if a file's open in multiple windows.
  • Work a-okay with various buffer explorers and tabbars.

:bdelete vs :bwipeout

From the plugin's documentation:

Vim has two commands for closing a buffer: :bdelete and :bwipeout. The former removes the file from the buffer list, clears its options, variables and mappings. However, it remains in the jumplist, so Ctrl-o takes you back and reopens the file. If that's not what you want, use :bwipeout or Bbye's equivalent :Bwipeout where you would've used :bdelete.

1
  • Thanks, this is exactly what I want, and it also works well with coc-explorer. :) Commented Aug 11, 2021 at 17:37
4

[EDIT: this was a stupid suggestion from a time I did not know Vim well enough. Please don't use tabs instead of buffers; tabs are Vim's "window layouts"]

Maybe switch to using tabs?

vim -p a/*.php opens the same files in tabs

gt and gT switch tabs back and forth

:q closes only the current tab

:qa closes everything and exits

:tabo closes everything but the current tab

4
  • 2
    Why do you say that using tabs is a stupid suggestion? I only ask because I use tabs all the time... :^/
    – Nate
    Commented Apr 19, 2012 at 23:59
  • 2
    @Nate: I decided to elaborate on that leonid.shevtsov.me/en/… Commented Apr 24, 2012 at 11:50
  • 1
    That was a great post - it inspired me to dig even deeper - have you looked at wildmenu? It's similar to lustyjuggler (though simpler) but it's built in (which was good for me, because lustyjuggler needs +ruby, and the default vim for ubuntu oneiric ships -ruby).
    – Nate
    Commented Apr 26, 2012 at 23:54
  • @Nate: yep, I'm using wildmenu to open files, but when you have many files in the project, it just doesn't scale. Also, the vim-nox package from Ubuntu has Ruby support. Commented Apr 27, 2012 at 21:59
3

How about

vim -O a a

That way you can edit a single file on your left and navigate the whole dir on your right... Just a thought, not the solution...

1

Those using a buffer or tree navigation plugin, like Buffergator or NERDTree, will need to toggle these splits before destroying the current buffer - else you'll send your splits into wonkyville

I use:

"" Buffer Navigation                                                                                                                                                                                        
" Toggle left sidebar: NERDTree and BufferGator                                                                                                                                                             
fu! UiToggle()                                                                                                                                                                                              
  let b = bufnr("%")                                                                                                                                                                                        
  execute "NERDTreeToggle | BuffergatorToggle"                                                                                                                                                              
  execute ( bufwinnr(b) . "wincmd w" )                                                                                                                                                                      
  execute ":set number!"                                                                                                                                                                                    
endf                                                                                                                                                                                                        
map  <silent> <Leader>w  <esc>:call UiToggle()<cr>   

Where "NERDTreeToggle" in that list is the same as typing :NERDTreeToggle. You can modify this function to integrate with your own configuration.

1
  • for this, the bbye plugin is perfect which preserves your window layout when using :bdelete or :bwipeout. See my answer.
    – Wolfson
    Commented May 25, 2020 at 8:42

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