DEV Community

lightweight fzf usages

r_tanaka on February 18, 2019

effective and core usage of fzf is writing function in .bashrc or something like that. this article focuses lightweight usages. open vim...
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.