Monday, May 10, 2010

VIM - How to format and syntax highlight JSON file

Formatting
  • Run this command in shell 
    sudo cpan JSON::XS
  • Put this line to ~/.vimrc 
    map <leader>jt <Esc>:%!json_xs -f json -t json-pretty<CR>
  • When want to format JSON file press
    \jt

  • credit : “tidify” a json in vim
Syntax highlighting

4 comments:

kly3 said...

You missed the "y" on the end of "pretty". :)

Hank Wang said...

It's good post, thanks :)

[ m a t t D ] said...

awesome. thanks!

Michael Romero said...

Thanks! Had to capitalize leader (i.e. Leader)