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
- Download json.vim form http://www.vim.org/scripts/script.php?script_id=1945 to ~/.vim/syntax/
- Put this line to ~/.vimrc
au BufRead,BufNewFile *.json set filetype=json
- credit : Add JSON syntax highlighting in Vim on OS X
5 comments:
You missed the "y" on the end of "pretty". :)
It's good post, thanks :)
awesome. thanks!
Thanks! Had to capitalize leader (i.e. Leader)
Thanks, very helpful. I didn't try the formatting tidy commands but the syntax highlighting works like a charm.
The linked json.vim file has been superseded as described on the source link.
For the lazy, here's the commands I shared with my team to copy-paste these actions:
mkdir -p ~/.vim/syntax
curl -o ~/.vim/syntax/json.vim https://raw.github.com/elzr/vim-json/master/syntax/json.vim
echo "au BufRead,BufNewFile *.json set filetype=json" >> ~/.vimrc
Post a Comment