Project Wide Find and Replace in Neovim

A good tutorial on project-wide find-and-replace in Neovim https://lnkd.in/e8Jhsh2q

Summary:

  • Use telescope to find (grep) the things
  • Send the things to the Quickfix list (CTRL+Q)
  • Use cfdo command to change the string to what you want and update all the files:

cfdo %s/stringOne/stringTwo/g | update | bd



all tags