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>