DEV Community

Discussion on: lightweight fzf usages

Collapse
 
ramblingenzyme profile image
Satvik Sharma

I'm quite fond of using ripgrep along with the VSCode CLI launcher.

code $(rg $SEARCH -l)

I've recently pulled fzf in by doing

code $(rg $SEARCH -l | fzf)

I will admit to have written this as a Fish Shell function but it's just so useful.