我想,使用vim-surround来转换这个
<p>
^currsor
Issues reported by users from the
<a href="https://re.fr"> https://re.fr</a>
they will create an issue.
</p>到那里面
<h1 class="important">
Issues reported by users from the
<a href="https://re.fr"> https://re.fr</a>
they will create an issue.
</h1>我一直在命令模式中使用:cs<<h1 class="important">和我得到
<h1 class="important">p</h1>
^currsor
Issues reported by users from the
<a href="https://re.fr"> https://re.fr</a>
they will create an issue.
</p>发布于 2021-01-27 04:44:59
你可以只做..。
cst<h1 class="important">
“更改周围的标签”
发布于 2021-01-27 04:56:32
现在我要去工作了:
3VS<h1>
将会为你做这件事
发布于 2021-01-27 04:39:47
在不使用环绕插件的情况下,我会这样做:
:%s/p>/h1>https://stackoverflow.com/questions/65908860
复制相似问题