Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not expand arrays if it would fit on the screen. #48

Open
axos88 opened this issue Feb 13, 2015 · 0 comments
Open

Do not expand arrays if it would fit on the screen. #48

axos88 opened this issue Feb 13, 2015 · 0 comments

Comments

@axos88
Copy link

axos88 commented Feb 13, 2015

Arrays, if they only contain values, and fit in a single line should not be broken up.

This:

{
202: {
0: "12",
1: "0",
4: "0",
10: "0",
13: "0",
21: "110",
25: "200",
26: "0",
35: [
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
1,
1,
0,
0,
0,
0
],
37: [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
],
68: "237",
82: "40"
},
204: {
1: "28",
10: [
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
},
255: { },
timestamp: "Fri Feb 13 10:15:11 2015"
}

Should instead be this:

{
202: {
0: "12",
1: "0",
4: "0",
10: "0",
13: "0",
21: "110",
25: "200",
26: "0",
35: [0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0],
37: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
68: "237",
82: "40"
},
204: {
1: "28",
10: [0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0]
},
255: { },
timestamp: "Fri Feb 13 10:15:11 2015"
}

Also when an element is collapsed, i'd expect to see at least the first 50-80 characters before ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant