Examples
Finding Files
Section titled “Finding Files”# Find any file in current directoryfcf
# Find any file in repo rootfrf
# Find any file from home directoryfgf
# Find TypeScript files in repofrfts
# Find markdown files in cwdfcfmd
# Find shell scripts globallyfgfshNavigating Directories
Section titled “Navigating Directories”# Find and cd into a directory in cwdfcd
# Find and cd into a directory in repofrd
# Smart cd with zoxide in cwdfcz
# Smart cd with zoxide from repo rootfrzGrepping Content
Section titled “Grepping Content”# Grep in current directoryfcg
# Grep in repo rootfrg
# Grep globally from homefgg
# Grep including hidden filesfcg-h
# Grep including ignored filesfrg-ni
# Grep including hidden + ignored filesfgg-hniPreviewing Files
Section titled “Previewing Files”# Preview file with bat in cwdfcb
# Preview file with bat in repofrb
# Grep and preview with batfcgb
# Grep in repo and preview with batfrgbOpening in Nvim
Section titled “Opening in Nvim”# Find and open file in nvim from cwdfcn
# Find and open file in nvim from repofrn
# Grep and open match in nvimfcgn
# Find TypeScript file and open in nvimfrntsFile Operations
Section titled “File Operations”# Remove a file in cwdfcrmf
# Remove a directory in repofrrmd
# Move a file in cwdfcmvf
# Copy a file in repofrcpf
# Rename a file in cwdfcrnf
# Remove markdown files in cwdfcrmfmd
# Copy JavaScript files in repofrcpfjsHidden and Ignored Files
Section titled “Hidden and Ignored Files”# Find hidden files in cwdfcf-h
# Find ignored files in repofrf-ni
# Find hidden + ignored files globallyfgf-hni
# Preview hidden file with batfcb-h
# Grep ignored files in repofrg-niCore Commands
Section titled “Core Commands”# Search and run from shell historyfh
# Kill a process via fzffkp
# Checkout a git branchfbr
# Browse all available commandsfzf-helpReal-World Workflows
Section titled “Real-World Workflows”Quick edit a config file
Section titled “Quick edit a config file”fgn # opens fzf searching from $HOME # type "config" to narrow results # select file → opens in nvimFind and delete old log files
Section titled “Find and delete old log files”fcrmf # opens fzf in cwd # type ".log" to narrow results # select file → confirms deletionGrep for a function and jump to it
Section titled “Grep for a function and jump to it”frgn # grep repo root # type function name # select match → opens in nvim at the lineSwitch git branches
Section titled “Switch git branches”fbr # opens fzf with branch list # type to filter # select → checks out the branch