You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another idea to add on top: the current column spacing is 3 spaces. Could reduce down to 2 (on demand) to help save some space. Would be helpful when the output is just 1-2 characters too wide
We don't want wrapping, as that's a big headache to render, and you can't really copy-paste from the terminal correctly then.
Instead, let's shrink columns when there's too much information.
Some columns should not get shrunk:
Algorithm, when we need to shrink:
…
)Repeat above until we fit the width.
As an optimization, we could have this as a custom type that only deals with slices, like so:
And then while shrinking multiple times, we don't have to generate a bunch of intermediate strings before we get the final value.
The text was updated successfully, but these errors were encountered: