Vim:使XML文本“漂亮”

时间:2013-01-24 20:18:43

标签: xml editor vi text-processing text-formatting

vi中是否有一种简单的方法可以使您的XML文本“漂亮”?

例如:

我想要这个......

            <person>
  <name>Nick</name>
 <age>26</age>

         <gender>male</gender>
<occupation>doctor</occupation>

    </person>

是这个(包括空格)......

<person>

    <name>Nick</name>
    <age>26</age>
    <gender>male</gender>
    <occupation>doctor<occupation>

</person>

我尝试在vi中使用这些命令:

:set filetype=xml
:filetype indent on
gg=G

但它只是删除了我的所有缩进。所以现在,一切都是这样的:

<person>
<name>Nick</name>
<age>26</age>
<gender>male</gender>
<occupation>doctor</occupation>
</person>

0 个答案:

没有答案