How to condense json arrays?

This is the postman style, It takes up most of my screen:

[
	[
		"AA",
		"B-DATE",
		0,
		1
	],
	[
		"SSS",
		"B-MISC",
		1,
		2
	],
	[
		"DDD",
		"B-ORGS",
		3,
		4
	],
	[
		"FFFF",
		"B-COLNAME",
		5,
		6
	],
	[
		"GGG",
		"B-DATE",
		6,
		7
	],
	[
		"HHHHH",
		"B-COLNAME",
		7,
		8
	],
    // more ...
]

The way I want it to be:

[
  ["AA", "B-DATE", 0, 1],
  ["SSS", "B-MISC", 1, 2],
  ["DDD", "B-ORGS", 3, 4],
  ["FFFF", "B-COLNAME", 5, 6],
  ["GGG", "B-DATE", 6, 7],
  ["HHHHH", "B-COLNAME", 7, 8]
]

The Postman Style is using Pretty Print and the way its displayed is correct for that format.

I don’t think you can turn this off or change it.

1 Like