I know regex for doing a global replace,
%s/old/new/g
how do you go about doing an interactive search replace in vim
|
|
|
|
|
|
|
Doing this
will give you a yes/no prompt at each occurrence of 'old'.
|
||||||||||
|
|
|
I usually use the find/substitute/next/repeat command :-)
That's It's a pain for massive substitutions but it lets you selectively ignore some occurrences of old (by just pressing |
||||||
|
|
|
I think you're looking for |
||
|
|
|
|
If you just want to count the number of occurrences of 'abc' then you can do %s/abc//gn. This won't replace anything but just report the count for the number of occurences of abc. |
||
|
|