peridot/vendor/github.com/liggitt/tabwriter
2023-08-22 17:20:03 +02:00
..
.travis.yml Initial commit 2023-08-21 18:01:10 +02:00
BUILD Use BUILD files instead of BUILD.bazel 2023-08-22 17:20:03 +02:00
LICENSE Initial commit 2023-08-21 18:01:10 +02:00
README.md Initial commit 2023-08-21 18:01:10 +02:00
tabwriter.go Initial commit 2023-08-21 18:01:10 +02:00

This repo is a drop-in replacement for the golang text/tabwriter package.

It is based on that package at cf2c2ea8 and inherits its license.

The following additional features are supported:

  • RememberWidths flag allows remembering maximum widths seen per column even after Flush() is called.
  • RememberedWidths() []int and SetRememberedWidths([]int) *Writer allows obtaining and transferring remembered column width between writers.