Vim search and replace with the substitute command
TLDR: Use substitute : %s/thisword/thatword/gc
Vim it rocks
Replace "thisword" with "thatword" global confirm
:%s/thisword/thatword/gc
What I do when I'm lazy.
- Find the word with : /
- Change the word with : cw
- Go to the next one with : n
- Repeat last command with : .
Read the docs
Yeah, first try the built in help
:help substitute