使用 VIM 复制 html 标签

Duplicate html tag with VIM

this 视频中,Erik Rasmussen 像这样编辑他的代码:

<div>
  <span>foo</span>
</div>

对此:

<div>
  <span>foo</span>
</div>
<div>
  <span>foo</span>
</div>

怎么可能?我所知道的是 vatyP 但它不会产生相同的结果。

你试过 3yyP 了吗?它似乎对我有用。