Context provides a way to specify both foreground and background colors
along with other styles and write text to a Writer with those colors and
styles.
BackgroundColorForegroundColorStyles[]Style
Fprint will set the sgr values of the writer to the specified foreground,
background and styles, then formats using the default formats for its
operands and writes to w. Spaces are added between operands when neither is
a string. It returns the number of bytes written and any write error
encountered.
Fprintf will set the sgr values of the writer to the specified
foreground, background and styles, then write the formatted string,
then reset the writer.
SetBackground sets the background to the specified color.
SetForeground sets the foreground to the specified color.
SetStyle replaces the styles with the new values.
(*T) sgr() string
*T : sgr
func Background(color Color) *Context
func Foreground(color Color) *Context
func Styles(styles ...Style) *Context
func (*Context).SetBackground(color Color) *Context
func (*Context).SetForeground(color Color) *Context
func (*Context).SetStyle(styles ...Style) *Context
TabWriter is a filter that inserts padding around tab-delimited
columns in its input to align them in the output.
It also setting of colors and styles over and above the standard
tabwriter package.
WriterWritertwtabwriter.WriterWriter.noColorbool
ClearStyle clears the text style.
Flush should be called after the last call to Write to ensure
that any data buffered in the Writer is written to output. Any
incomplete escape sequence at the end is considered
complete for formatting purposes.
A Writer must be initialized with a call to Init. The first parameter (output)
specifies the filter output. The remaining parameters control the formatting:
minwidth minimal cell width including any padding
tabwidth width of tab characters (equivalent number of spaces)
padding padding added to a cell before computing its width
padchar ASCII char used for padding
if padchar == '\t', the Writer will assume that the
width of a '\t' in the formatted output is tabwidth,
and cells are left-aligned independent of align_left
(for correct-looking results, tabwidth must correspond
to the tab width in the viewer displaying the result)
flags formatting control
Reset returns the default foreground and background colors with no styles.
SetBackground sets the background color.
SetColorCapable forces the writer to either write the ANSI escape color
if capable is true, or to not write them if capable is false.
SetColumnAlignRight will mark a particular column as align right.
This is reset on the next flush.
SetForeground sets the foreground color.
SetStyle sets the text style.
( T) Write(p []byte) (n int, err error)
writeSGR takes the appropriate integer SGR parameters
and writes out the ANIS escape code.
T : io.Writer
*T : sgrWriter
func NewTabWriter(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *TabWriter
func (*TabWriter).Init(output io.Writer, minwidth, tabwidth, padding int, padchar byte, flags uint) *TabWriter
Writer allows colors and styles to be specified. If the io.Writer
is not a terminal capable of color, all attempts to set colors or
styles are no-ops.
Writerio.WriternoColorbool
ClearStyle clears the text style.
Reset returns the default foreground and background colors with no styles.
SetBackground sets the background color.
SetColorCapable forces the writer to either write the ANSI escape color
if capable is true, or to not write them if capable is false.
SetForeground sets the foreground color.
SetStyle sets the text style.
( T) Write(p []byte) (n int, err error)
writeSGR takes the appropriate integer SGR parameters
and writes out the ANIS escape code.
T : io.Writer
*T : sgrWriter
func NewWriter(w io.Writer) *Writer
( T) Len() int( T) Less(i, j int) bool( T) Swap(i, j int)
sgr returns the combined escape sequence for the Select Graphic Rendition
for the sequence of attributes.
T : sort.Interface
T : sgr
Package-Level Functions (total 6, in which 5 are exported)
Background is a convenience function that creates a Context with the
specified color as the background color.
Foreground is a convenience function that creates a Context with the
specified color as the foreground color.
NewTabWriter returns a writer that is able to set colors and styels.
The ansi escape codes are stripped for width calculations.
NewWriter returns a Writer that allows the caller to specify colors and
styles. If the io.Writer is not a terminal capable of color, all attempts
to set colors or styles are no-ops.
Styles is a convenience function that creates a Context with the
specified styles set.
colorEnabledWriter returns a writer that can handle the ansi color codes
and true if the writer passed in is a terminal capable of color. If the
TERM environment variable is set to "dumb", the terminal is not considered
color capable.
Package-Level Constants (total 27, in which 25 are exported)
The pages are generated with Goldsv0.3.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds.