Recently learned in VIM-land
#nvim#neovim#tips
Search and replace globally through quicklist
Find all occurrences of foo
and replace them with bar
in all files in the current directory:
<leader>/ to search for foo
<c-q> to add all matches to quicklist
:cdo %s/foo/bar/g<cr>
Voila! All occurrences of foo
have been replaced with bar
.