Eu também precisava dessa funcionalidade o tempo todo. Esta é a solução que tenho no meu 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>')
Agora, eu posso fazer :BW regex
(por exemplo, :BW \.cpp$
e limpar todos os buffers correspondentes que correspondam a esse padrão em seu nome de caminho.
Se você deseja excluir, em vez de limpar, é claro que pode substituir exec 'bw ' . join(l:matchList, ' ')
porexec 'bd ' . join(l:matchList, ' ')
<tab>
apenas permite percorrer as correspondências, colocando uma única entrada na linha de comando e<C-a>
adicionando todas as correspondências de uma só vez.