uitable icon indicating copy to clipboard operation
uitable copied to clipboard

A go library to improve readability in terminal apps using tabular data

Results 8 uitable issues
Sort by recently updated
recently updated
newest added

AFAICT, github.com/fatih/color dependency (which pulls in other dependencies) seems to be very minimal and could be removed easily, logging this issue to to check if you're open to it before...

This PR adds a new function `Lines()` to `Table`, making it possible to access the table's string output as a collection (slice) of strings. This is useful if you'd like...

Fix #20 ![image](https://user-images.githubusercontent.com/15977536/162117841-e8a7178d-78e3-4450-bbed-71fc45b44798.png) /cc @gosuri

Add some extra chars in the multi-color example, the display of wrap fails: ![image](https://user-images.githubusercontent.com/15977536/162117160-0bdf5013-7cae-4af1-b7e3-431d6cba03a1.png) That's because we use `runewidth.StringWidth` to calculate the length of the cell, but use `len` to...

Hi, I had added ppc64le(Linux on Power) architecture support on travis-ci in the PR and looks like its been successfully added. I believe it is ready for the final review...

This is quite a weird one that I ran into a while ago when using Helm. The original ticket can be found here; https://github.com/helm/helm/issues/8242 When using Bash on Ubuntu in...

Make it possible to attach a formatter function to each table cell. This is primarily useful to colorize terminal output, but could perhaps be used in other ways too. The...