VIM美化XML-JSON
使用VIM美化XLM和JSON,XML使用xmllint
,JSON使用json_pp
或者python -m json.tool
VIM美化XML
1 | %!xmllint --format - |
VIM调用外部命令
% - 文档所有内容
!- VIM调用外部命令
xmllint - 实际美化xml命令
–format - 格式化
- - 输出到屏幕,被VIM捕获后,输出到VIM
VIM美化JSON
1 | %!python -m json.tool |