vim copy and replace text

前端 未结 10 2275
名媛妹妹
名媛妹妹 2021-02-14 18:02

Lets say that i have this text:

$test = \'lorem\';
$test2= \'ipsum\';

and I want to copy lorem and paste into ipsum. I tried to do yi\' on lor

10条回答
  •  旧时难觅i
    2021-02-14 18:42

    Why don't you yank into a named buffer, using "ayi', then delete and paste with d'i"aP?

提交回复
热议问题