Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I'm not sure about this, as it might be slow in big tables... This will go through all rows, calculate their widths, and set it as the column width if none was provided with `-w`. ```console $ echo -e "a,b\naaaaaaaaaaaaaaaaaaaaaaa,bbbbbbbbbbbbbbbb" | gum table a b … … $ echo -e "a,b\naaaaaaaaaaaaaaaaaaaaaaa,bbbbbbbbbbbbbbbb" | gum table a b aaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbb $ echo -e "a,b\naaaaaaaaaaaaaaaaaaaaaaa,bbbbbbbbbbbbbbbb" | gum table -w 5,5 a b aaaa… bbbb… ``` closes #285
- Loading branch information