Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我为 vim 使用 Zen Coding 时,我通常会遇到同样的问题:当我想用p输出包装一个段落时,会如下所示:
p
<p>Text</p>
但是,我希望它输出如下:
<p> Text </p>
如何告诉 zencoding 插件将输出分成几行?
在官方 Zen Coding 中(你的 Vim 插件有非官方的实现,但它试图贴近它),你需要对xml你的缩写应用过滤器。它将应用具有不同格式选项的 XML 配置文件。
xml
因此,在您的情况下,您可以尝试使用p|xml缩写来换行。
p|xml
有关输出调整的更多信息,您可能需要阅读以下内容: