fzf
last updated: Jun 06, 2024
One of the first things I setup on my computer; I use it for:
- filename completion
- type
cat src/**<tab>
, and a list of files pops up where I can start typing and get fuzzy completion - config here
- type
- telescope
- my favorite vim extension, which I use constantly, uses fzf to filter file names
- config here
,ff
: my personal file finder script, which is an fd command piped to fzf, which shows a preview of a file and pops it open in vim if you select it- source
- screenshot:
,fg
: a similar script, but greps inside the files rather than searching the file names and shows the match in context- source
- screenshot (here I've searched for
render
, and it shows the selected match in context):
The fzf docs have a neat tip about using fzf
to browse log files from a server interactively
Backlinks: