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
The idea is to allow tables to be displayed in nonDynamic mode, but truncate columns that don't fit into the width of the current table.
I.e. if there's the terminal is 30 chars wide, and there's a table with a row like this:
| 0123456789 | 0123456789 | 0123456789 |
it would then be displayed like this
| 0123456789 | 0123456789 | ... |
My proposal would be to add a new ContentArrangement::Cutoff mode (or maybe ColumnCutoff?). This mode does mostly the same as Disabled, but cuts off any columns that don't fit into a given width.
The idea is to allow tables to be displayed in non
Dynamic
mode, but truncate columns that don't fit into the width of the current table.I.e. if there's the terminal is 30 chars wide, and there's a table with a row like this:
it would then be displayed like this
My proposal would be to add a new
ContentArrangement::Cutoff
mode (or maybe ColumnCutoff?). This mode does mostly the same asDisabled
, but cuts off any columns that don't fit into a given width.This issue is based on a discussion on #124.
If anyone is interested in this, feel free to start working on it. I won't do this myself.
Please add proper documentation and test coverage.
The text was updated successfully, but these errors were encountered: