之前在网上找的都不能用,最后找到日本原作者的方案,完美解决
_vimrc配置:
command! Jsonf :execute '%!python -m json.tool'
\ | :execute '%!python -c "import re,sys;chr=__builtins__.__dict__.get(\"unichr\", chr);sys.stdout.write(re.sub(r\"\\u[0-9a-f]{4}\", lambda x: chr(int(\"0x\" + x.group(0)[2:], 16)), sys.stdin.read()))"'
\ | :%s/ \+$//ge
\ | :set ft=javascript
\ | :1
简单说明:
1. 使用python的json.tool格式化
2. 解码unicode字符串,如“\ u307d”
3. 由于每行末尾都有空格,请删除
4. 将vim的文件类型突出显示为javascript
5. 将光标移动到第一行