Yo también necesitaba esta funcionalidad todo el tiempo. Esta es la solución que tengo en mi vimrc.
function! GetBufferList()
return filter(range(1,bufnr('$')), 'buflisted(v:val)')
endfunction
function! GetMatchingBuffers(pattern)
return filter(GetBufferList(), 'bufname(v:val) =~ a:pattern')
endfunction
function! WipeMatchingBuffers(pattern)
let l:matchList = GetMatchingBuffers(a:pattern)
let l:count = len(l:matchList)
if l:count < 1
echo 'No buffers found matching pattern ' . a:pattern
return
endif
if l:count == 1
let l:suffix = ''
else
let l:suffix = 's'
endif
exec 'bw ' . join(l:matchList, ' ')
echo 'Wiped ' . l:count . ' buffer' . l:suffix . '.'
endfunction
command! -nargs=1 BW call WipeMatchingBuffers('<args>')
Ahora, puedo hacer :BW regex
(por ejemplo, :BW \.cpp$
y borrar todos los búferes coincidentes que coinciden con ese patrón en su nombre de ruta.
Si desea eliminar en lugar de limpiar, por supuesto, puede reemplazar exec 'bw ' . join(l:matchList, ' ')
conexec 'bd ' . join(l:matchList, ' ')
<tab>
solo le permite recorrer las coincidencias, poniendo una sola entrada en la línea de comando,<C-a>
agrega todas las coincidencias a la vez.