Re: Pasting into Command Line and repeat substitutions
On windows I normally highlight a variable press control-c and then go into command mode and start creating my command and pasting the word in.
Is their a way to past into the command line.
My most common use is.
:%s/someLongVariableOrOtherString/replacement/
I tried a hack around of hitting * on the word, and then a repeat substitution.
on someLongVariableOrOtherString hit * then
:%s//replacement/
This words fine on vim, however viemu treats it like
:%s/^/replacement/ and inserts the replacement at the beginning of all the lines.