vote up 4 vote down star

I know regex for doing a global replace,

     %s/old/new/g

how do you go about doing an interactive search replace in vim

flag

44% accept rate

4 Answers

vote up 16 vote down check

Doing this

%s/old/new/gc

will give you a yes/no prompt at each occurrence of 'old'.

link|flag
+1, I learned something new today! vim has so many hidden secrets.. :) – Marc Novakowski Feb 3 at 2:45
Indeed! I did not know about the c modifier. – strager Feb 3 at 2:59
Learning vim commands is a little bit like playing Nethack. You never know what wonders a single character is going to hold. – Mark Biek Feb 3 at 3:06
Well, bugger me ! I've been using vi for nigh on 30 years and this is the first time I've seen this. That little editor continues to amaze me even after all this time (especially the vim extensions). +1 for making my life easier, where were you 20-odd years ago? – paxdiablo Feb 3 at 3:10
@Pax Alternating between building a tree fort and writing BASIC programs to print out dirty words :) – Mark Biek Feb 3 at 3:19
show 2 more comments
vote up 3 vote down

I usually use the find/substitute/next/repeat command :-)

/old<CR>3snew<ESC>n.n.n.n.n.n.n.

That's find "old", substitute 3 characters for "new", find next, repeat substitute, and so on.

It's a pain for massive substitutions but it lets you selectively ignore some occurrences of old (by just pressing n again to find the next one instead of . to repeat a substitution).

link|flag
I use this as well, even for similar texts. (3cW<texthere><ESC><move to new location>.<move>.<move>.) – strager Feb 3 at 3:00
Well, I won't be using this 'antipattern' again - see Mark Biek's answer for how to do it the right way. – paxdiablo Feb 3 at 4:25
It's not an antipattern! It's sweet. And you can search in the opposite direction using N. Really good if you see a word and want to change it. *cwNewText<ESC>N.n.n. (This will jump away from the word under the cursor, but then jump back soon as you have changed the next occurrence. – PEZ Feb 3 at 7:57
vote up 3 vote down

I think you're looking for c, eg s/abc/123/gc, this will cause VIM to confirm the replacements. See :help :substitute for more information.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.