是否有一种简单的方法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>