dzhibas / SublimePrettyJson

Prettify/Minify/Query/Goto/Validate/Lint JSON plugin for Sublime Text 3 & 4
MIT License
2.02k stars 181 forks source link

Feature request #148

Open cristcost opened 3 years ago

cristcost commented 3 years ago

Hey, could you add a feature that prettify 1 level but minify inside ?

I mean, a command that will format Json like this:

[
    {"id":1,"first_name":"Arnold","last_name":"Schwarzenegger"},
    {"id":2,"first_name":"Bruce","last_name":"Willis"},
    {"id":3,"first_name":"Chuck","last_name":"Norris"}
]

or

{
    "Arnold": ["Commando","Terminator","The Expendables 2"],
    "Bruce": ["Die Hard","Armageddon","The Expendables 2"],
    "Chuck": ["Lone Wolf McQuade","The Delta Force","The Expendables 2"]
}

Is it hard to hack the plugin to do it?