vim 格式化 json 字符串
Posted PeersLee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vim 格式化 json 字符串相关的知识,希望对你有一定的参考价值。
" vimrc
" json
let mapleader = "\\<space>"
map <Leader>jf :%!python -m json.tool<CR>
command! JM :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()))"'
以上是关于vim 格式化 json 字符串的主要内容,如果未能解决你的问题,请参考以下文章