Last active
October 6, 2024 18:13
-
-
Save Konfekt/7b800c669c1e31158b1d921111615b57 to your computer and use it in GitHub Desktop.
uq: grep interactively in (Neo)vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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