Skip to content

Instantly share code, notes, and snippets.

@Konfekt
Last active October 6, 2024 18:13
Show Gist options
  • Save Konfekt/7b800c669c1e31158b1d921111615b57 to your computer and use it in GitHub Desktop.
Save Konfekt/7b800c669c1e31158b1d921111615b57 to your computer and use it in GitHub Desktop.
uq: grep interactively in (Neo)vim
" Add the following snippet to your vimrc or put it into (Neo)Vim's plugin dir
" to grep interactively in the current work dir.
" Open the topmost file in (Neo)Vim by hitting <F2>.
" Requires [ugrep](https://github.com/Genivia/ugrep), a drop-in alternative to grep
" similar to ripgrep.
let s:term = has('nvim') ? 'term' : 'term ++close'
let s:cmd = 'ugrep --config --query --no-confirm --view='..shellescape(v:progpath)
let s:cleanup = has('nvim') ? 'autocmd TermClose <buffer=abuf> if !v:event.status |bwipeout!| endif' : 'redraw!'
command! UQ exe s:term s:cmd | exe s:cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment