26

JSON pretty formatting in vim

Dawid Laszuk published on
1 min, 115 words

Quick ad hoc command:

:%!python -m json.tool
For reusing and typing more update your `.vimrc` file with:
com! FormatJSON %!python -m json.tool
After this you should be able to use :FormatJSON command. Read More