Como me he encontrado haciendo esto frecuentemente, combiné un script (mejorable).
Usted u otra persona pueden encontrarlo útil.
Breve explicación:
Básicamente, busca en la lista de búfer y muestra el resultado en la ventana quickfix.
Se agregan dos comandos básicos.
Search <pattern>
: Buscar todos los buffers para <pattern>
.
Search1 <pattern>
: Busca todos los búferes <pattern>
, pero solo muestra el primer resultado para cada búfer. Típicamente útil para enumerar todos los buffers donde foo
se usa la función, variable (o lo que sea).
Use bang ( :Search! foo
) para agregar a los resultados.
Además GSearch
y GSearch1
se agrega donde la diferencia es que con Search
el script agregue delimitador de expresiones regulares, por ejemplo:
foo -> /foo/
Donde como se GSearch
espera que esté encerrado.
La j
bandera siempre se agrega para evitar el salto.
Código:
Hay algunos hacks para evitar la lista de errores y al mismo tiempo mantener el código corto. try / catch
fue un poco engorroso bufdo
.
let s:not_idents = split("/!#$%&\"`´¨'¯()*+,-.:;<=>?¿@[\]^{|}µ¶·¸~±×÷®©«»¬ª°º¹²³¼½¾", '\zs')
" Create a delimited pattern. "
fun! s:Parse_pat(pat)
for c in s:not_idents
if stridx(a:pat, c) == -1
return c . a:pat . c
endif
endfor
echohl Error
echom "Could not delimit pattern '". a:pat ."'"
echohl None
return ''
endfun
fun! s:AllBufSearch(pat, bang, uno, isg)
if a:isg
let pat = a:pat
else
let pat = s:Parse_pat(a:pat)
endif
if pat == ''
return
endif
cclose
let [_buf, _view] = [bufnr("%"), winsaveview()]
let _foldenable = &foldenable
set nofoldenable
" Copy of current qflist. "
let qfc = getqflist()
" Hack to prevent error if no matches. "
call setqflist([{}])
silent execute "bufdo vimgrepadd! " . pat . "j %"
" Restore "
exec "buffer " . _buf
let &foldenable = _foldenable
call winrestview(_view)
" Fix "
let qf = getqflist()
call remove(qf, 0)
" Only one listing per buffer. "
if a:uno
let bn = {}
let i = 0
for m in qf
if has_key(bn, m["bufnr"])
call remove(qf, i)
else
let bn[m["bufnr"]] = 1
call remove(qf[i], "valid")
let i += 1
endif
endfor
endif
if a:bang == "!"
let qf = qfc + qf
endif
" If any matches, copen. "
if len(qf)
call setqflist(qf)
copen
endif
endfun
command! -nargs=1 -bang Search call s:AllBufSearch(<q-args>, "<bang>", 0, 0)
command! -nargs=1 -bang Search1 call s:AllBufSearch(<q-args>, "<bang>", 1, 0)
command! -nargs=1 -bang GSearch call s:AllBufSearch(<q-args>, "<bang>", 0, 1)
command! -nargs=1 -bang GSearch1 call s:AllBufSearch(<q-args>, "<bang>", 1, 1)