go-pretty icon indicating copy to clipboard operation
go-pretty copied to clipboard

Table-writer and more in golang!

Results 8 go-pretty issues
Sort by recently updated
recently updated
newest added

First, thanks for the great library. It is excellent. It would be nice to be able to customize the first and last rows of the table different from the middle...

enhancement

Is it possible to add a feature to flip a table, such that the rows and columns are interchanged? For example, table ``` ----------------------- | Header 1 | Header 2...

enhancement

**Describe the bug** I expected `SortBy` to operate on the raw table data. However as soon as I set a transformer on the column I sort by, the sorting breaks....

enhancement

**Is your feature request related to a problem? Please describe.** I'd like to display tables with more control over the exact placement of separators than auto-merge allows. For example, something...

enhancement

It is not a bug, but I have a question about generating table with auto-merge option. I wrote following code: ``` package main import ( "fmt" "github.com/jedib0t/go-pretty/v6/table" "github.com/jedib0t/go-pretty/v6/text" ) func...

enhancement

**Describe the bug** When using `AutoMerge` and `WidthMax` together on a `ColumnConfig`, unnecessary whitespace is left in rows where the column value is wrapped and has been merged. **To Reproduce**...

enhancement

**Describe the bug** Reset signal should be done under mutex otherwise there could be a race between the time we call Render which resets the signals and the time we...

**Is your feature request related to a problem? Please describe.** Progress bars remain, even after completing. The same can be said for `Progress` when all Trackers has been satisfied. **Describe...