I have the following problem
This is text:
printf("sysname %s",ut.sysname);
I want to use vim to replace sysname
line by line. I type the command in my gvim:
:s/sysname/version
I want to get the output like this:
printf("version %s",ut.version);
But I get the output like this:
printf("version %s",ut.sysname);
What am I doing wrong?