Change this text:
var foo = "method("+argument1+","+argument2+")";
to this:
var foo = "method(" + argument1 + "," + argument2 + ")";
Steps:
- find "+" with
f+
- delete and switch to insert mode with
s
- Type
+
- Leave insert mode
- find the next "+" with
;
- Repeat with
.