vimtricks.wiki Concise Vim tricks, one at a time.

How do you search file contents with fzf and ripgrep?

Answer

:Rg pattern

Explanation

Use :Rg pattern from fzf.vim to search file contents using ripgrep. Results appear in a fuzzy-finder interface for quick navigation.

Next

How do I visually select a double-quoted string including the quotes themselves?