vim copy and replace text

前端 未结 10 2230
名媛妹妹
名媛妹妹 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条回答
  •  梦谈多话
    2021-02-14 18:39

    You want to use y to copy a selection and p to paste.

    Here is a good list to keep handy.

提交回复
热议问题