Jade Dungeon

vim

格式化

格式化JSON

:%!python3 -m json.tool
  • %表示针对全部的行范围
  • !调用外部命令

可以在~/.vimrc增加快捷键

map <F4> :%!python -m json.tool<CR>

中文显示为unicode解决方案(只有python2环境可用):

可以在~/.vimrc增加:

command! Jsonf :execute '%!python -m json.tool'
  \ | :execute '%!python -c "import re,sys;sys.stdout.write(re.sub(r\"\\\u[0-9a-f]{4}\", lambda m:m.group().decode(\"unicode_escape\").encode(\"utf-8\"), sys.stdin.read()))"'