Since it is disallowed to affect the buffer list with :bufdo-argument
command, you have to delete the buffers using Vim script.
The script below enumerates all existing buffer numbers and delete those
buffers that do not have a name (displayed as [No Name] in Vim interface)
and unsaved changes (:bdelete command without ! sign will not allow to
delete a changed buffer).
function! DeleteEmptyBuffers()
let empty = []
let [i, n] = [1, bufnr('$')]
while i <= n
if bufexists(i) && bufname(i) == ''
call add(empty, i)
endif
let i += 1
endwhile
if len(empty) > 0
exe 'bdelete' join(empty, ' ')
endif
endfunction
If you would like to delete empty buffers completely (including unloaded
ones), consider (with care!) replacing bdelete with bwipeout (see :help
:bd, :help :bw).
To test the contents of a buffer to delete, use getbufline() function. For
example, to be absolutely sure that buffer has no text in it, modify the if
statement inside the while-loop above, as follows.
if bufloaded(i) && bufname(i) == '' && getbufline(i, 1, 2) == ['']
Note that bufexists() is changed to bufloaded() here. It is necessary
because it is possible to get the contents only of those buffers that are
loaded (for unloaded buffers getbufline() returns empty list regardless of
their contents).
:bufdo-argument command must not add or delete buffers (see:help :bufdo). – ib. Jul 2 '11 at 15:18