Just use * and then:
:%s//new value/
If you don’t specify a pattern, the substitute command uses the last searched one.
Depending on the value of gdefault
in your configuration, you might need to add a /g
modifier to that command.
Just use * and then:
:%s//new value/
If you don’t specify a pattern, the substitute command uses the last searched one.
Depending on the value of gdefault
in your configuration, you might need to add a /g
modifier to that command.