Quote:
Originally posted by Lomic
if I understand what you mean, I should do like this:
Code:
:%s/^.*blabla\ \'toto\'\ rep\:\/titi\/toto\///
Am I right? (if it is the case, it si ok because my pattern never change)
|
Looking at that, all you really need to do is
Code:
:%s/^.*blabla 'toto' rep:\/titi\/toto\///
i.e. it's only the slashes that need to be escaped.
Cheers
ZB