Answers for "vim find and replace all"

0

linux vim replace all

%s/{the word you want to find}/{word to replaced with }/gc
Posted by: Guest on June-11-2020
1

search and replace vim

:6,10s/<search_string>/<replace_string>/g | 14,18&&
Posted by: Guest on April-09-2020
0

vim find and replace all recursively

vim mode/**/*.js 
 :bufdo %s/findterm/replaceterm/g | update
Posted by: Guest on March-04-2020

Browse Popular Code Answers by Language